diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-08-04 18:21:06 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-08-31 14:50:38 +0000 |
| commit | 33c31cdcdb285b20ed0286f2ec6f87e39d666666 (patch) | |
| tree | 99657d7b50c6b7eefaaa4d7c2541e737b15ceace /src/extension/prefdialog/parameter-description.cpp | |
| parent | Implement "translationdomain" attribute for extensions (diff) | |
| download | inkscape-33c31cdcdb285b20ed0286f2ec6f87e39d666666.tar.gz inkscape-33c31cdcdb285b20ed0286f2ec6f87e39d666666.zip | |
Create new InxWidget base class for extension widgets.
Diffstat (limited to 'src/extension/prefdialog/parameter-description.cpp')
| -rw-r--r-- | src/extension/prefdialog/parameter-description.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/prefdialog/parameter-description.cpp b/src/extension/prefdialog/parameter-description.cpp index 7ab607a54..9c6912d81 100644 --- a/src/extension/prefdialog/parameter-description.cpp +++ b/src/extension/prefdialog/parameter-description.cpp @@ -100,7 +100,7 @@ Gtk::Widget *ParamDescription::get_widget (SPDocument * /*doc*/, Inkscape::XML:: // This means texts can not shrink anymore (they can still grow, though) and it's also necessary // to prevent https://bugzilla.gnome.org/show_bug.cgi?id=773572 int len = newtext.length(); - label->set_width_chars(len > Parameter::GUI_MAX_LINE_LENGTH ? Parameter::GUI_MAX_LINE_LENGTH : len); + label->set_width_chars(len > GUI_MAX_LINE_LENGTH ? GUI_MAX_LINE_LENGTH : len); label->show(); |
