diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-06-20 13:20:52 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-06-20 13:20:52 +0000 |
| commit | af32f53a859d8bc0dc5c07d644a8158f8c950cdc (patch) | |
| tree | 0ed9599288b92de7441e624630659a9faee4ab3b /src/extension/extension.cpp | |
| parent | Merge branch 'copypasta' of gitlab.com:nathanal/inkscape (diff) | |
| parent | Remove deprecated usage of custom Gtk::IconSize (diff) | |
| download | inkscape-af32f53a859d8bc0dc5c07d644a8158f8c950cdc.tar.gz inkscape-af32f53a859d8bc0dc5c07d644a8158f8c950cdc.zip | |
Merge branch 'gtk3-deprecated' of gitlab.com:Qantas94Heavy/inkscape
Diffstat (limited to 'src/extension/extension.cpp')
| -rw-r--r-- | src/extension/extension.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp index a373e5ec0..77a171487 100644 --- a/src/extension/extension.cpp +++ b/src/extension/extension.cpp @@ -796,7 +796,8 @@ Extension::get_help_widget() if (_help == nullptr) { Gtk::Label * content = Gtk::manage(new Gtk::Label(_("Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension."))); - content->set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_START); + content->set_xalign(0); + content->set_yalign(0); retval->pack_start(*content, true, true, 4); content->set_line_wrap(true); content->show(); |
