diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-30 12:25:40 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-30 12:25:40 +0000 |
| commit | c94904488d68f4c4c97a5eedb2067d82e3859790 (patch) | |
| tree | e14b5cd8af66fc40f5f325570a4740b8cbc83d07 /src/live_effects/effect.cpp | |
| parent | Translations: Fix translation error in Icelandic (is) translation (diff) | |
| download | inkscape-c94904488d68f4c4c97a5eedb2067d82e3859790.tar.gz inkscape-c94904488d68f4c4c97a5eedb2067d82e3859790.zip | |
Improvements to meassure segments LPE and a little styling tweak to default LPE params
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
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; } |
