summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
authorKarl Cheng <qantas94heavy@gmail.com>2019-05-08 10:50:54 +0000
committerKarl Cheng <qantas94heavy@gmail.com>2019-06-16 09:37:16 +0000
commit0d0545debc43c951942786c425eed9dad70a270e (patch)
tree1333af83087f118edad4fc2902f07d100ff0b851 /src/extension/extension.cpp
parentRemove leftover GTK/gtkmm >= 3.16 check (diff)
downloadinkscape-0d0545debc43c951942786c425eed9dad70a270e.tar.gz
inkscape-0d0545debc43c951942786c425eed9dad70a270e.zip
Replace deprecated Gtk::Misc functions
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp3
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();