diff options
| author | Karl Cheng <qantas94heavy@gmail.com> | 2019-05-08 10:38:05 +0000 |
|---|---|---|
| committer | Karl Cheng <qantas94heavy@gmail.com> | 2019-06-16 09:37:16 +0000 |
| commit | da27cd196516ec88c10ed9c799bbb5dd38244f6c (patch) | |
| tree | 1d0babdeb458fb3cd29b008469a3ccb5b90546c8 | |
| parent | Fix a bug when multiple stylesheet (diff) | |
| download | inkscape-da27cd196516ec88c10ed9c799bbb5dd38244f6c.tar.gz inkscape-da27cd196516ec88c10ed9c799bbb5dd38244f6c.zip | |
Remove leftover GTK/gtkmm >= 3.16 check
This was mostly done in 630be82740, but it seems this file was missed.
Refs: https://gitlab.com/inkscape/inkscape/commit/630be8274013c5eef5f19e19a14bc6d759aada5a
| -rw-r--r-- | src/extension/param/description.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/extension/param/description.cpp b/src/extension/param/description.cpp index 154c172df..60e2d02c8 100644 --- a/src/extension/param/description.cpp +++ b/src/extension/param/description.cpp @@ -108,11 +108,7 @@ ParamDescription::get_widget (SPDocument * /*doc*/, Inkscape::XML::Node * /*node label->set_text(newtext); } label->set_line_wrap(); -#if (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION >= 16) label->set_xalign(0); -#else - label->set_alignment(Gtk::ALIGN_START); -#endif // TODO: Ugly "fix" for gtk3 width/height calculation of labels. // - If not applying any limits long labels will make the window grow horizontally until it uses up |
