summaryrefslogtreecommitdiffstats
path: root/src/extension/param/float.cpp
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-02-13 01:39:21 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-02-13 01:39:21 +0000
commitc85e99bd33de9d7d2129bf21cd29cca9f4c50f79 (patch)
tree2f7bdb366e7042e51579c72252824bc8aff5740a /src/extension/param/float.cpp
parentExtensions: Harmonize appearance and try to simplify layouting a bit (diff)
downloadinkscape-c85e99bd33de9d7d2129bf21cd29cca9f4c50f79.tar.gz
inkscape-c85e99bd33de9d7d2129bf21cd29cca9f4c50f79.zip
Extensions: Make "int" and "float" parameters specifying 'appearance="full"'expand in horizontal direction when the window is expanded
(bzr r15510)
Diffstat (limited to '')
-rw-r--r--src/extension/param/float.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/param/float.cpp b/src/extension/param/float.cpp
index fd82ab312..dd7087968 100644
--- a/src/extension/param/float.cpp
+++ b/src/extension/param/float.cpp
@@ -184,7 +184,7 @@ Gtk::Widget * ParamFloat::get_widget(SPDocument * doc, Inkscape::XML::Node * nod
UI::Widget::SpinScale *scale = new UI::Widget::SpinScale(_(_text), fadjust, _precision);
scale->set_size_request(400, -1);
scale->show();
- hbox->pack_start(*scale, false, false);
+ hbox->pack_start(*scale, true, true);
}
else if (_mode == MINIMAL) {