summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2017-09-30 12:31:19 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2017-09-30 12:31:19 +0000
commit39f6a42431d55583da5b00da8992a46374ceded8 (patch)
tree3079a24625d391ada815113da31381e8aff6d152 /src/live_effects/effect.cpp
parentMerge branch 'master' of gitlab.com:inkscape/inkscape (diff)
parentImprovements to meassure segments LPE and a little styling tweak to default L... (diff)
downloadinkscape-39f6a42431d55583da5b00da8992a46374ceded8.tar.gz
inkscape-39f6a42431d55583da5b00da8992a46374ceded8.zip
Merge branch 'master' of gitlab.com:inkscape/inkscape
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index fcb4b5cb2..703852881 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -873,7 +873,9 @@ Effect::defaultParamSet()
expander->set_expanded(false);
vbox->pack_start(*dynamic_cast<Gtk::Widget *> (expander), true, true, 2);
if (has_params) {
- return dynamic_cast<Gtk::Widget *>(vbox);
+ Gtk::Widget *vboxwidg = dynamic_cast<Gtk::Widget *>(vbox);
+ vboxwidg->set_margin_bottom(15);
+ return vboxwidg;
} else {
return NULL;
}