summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-09-08 16:40:24 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-09-08 16:40:24 +0000
commit8134e5dd1db8a70dd8dce5d6a78f8e62c435ee6e (patch)
treedc39a01c4e556184ada45adf306b10ac57a27d00 /src
parentAlso snap new guides, which are being dragged off the ruler. (diff)
downloadinkscape-8134e5dd1db8a70dd8dce5d6a78f8e62c435ee6e.tar.gz
inkscape-8134e5dd1db8a70dd8dce5d6a78f8e62c435ee6e.zip
place apply horizonally
(bzr r3702)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/livepatheffect-editor.cpp8
-rw-r--r--src/ui/dialog/livepatheffect-editor.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp
index f55fcdda0..6da07c2d8 100644
--- a/src/ui/dialog/livepatheffect-editor.cpp
+++ b/src/ui/dialog/livepatheffect-editor.cpp
@@ -81,12 +81,12 @@ LivePathEffectEditor::LivePathEffectEditor(Behavior::BehaviorFactory behavior_fa
Gtk::VBox *vbox = get_vbox();
vbox->set_spacing(4);
- effectapplication_vbox.set_spacing(4);
+ effectapplication_hbox.set_spacing(4);
effectcontrol_vbox.set_spacing(4);
- effectapplication_vbox.pack_start(combo_effecttype, true, true);
- effectapplication_vbox.pack_start(button_apply, true, true);
- effectapplication_frame.add(effectapplication_vbox);
+ effectapplication_hbox.pack_start(combo_effecttype, true, true);
+ effectapplication_hbox.pack_start(button_apply, true, true);
+ effectapplication_frame.add(effectapplication_hbox);
effectcontrol_vbox.pack_start(explain_label, true, true);
effectcontrol_vbox.pack_end(button_remove, true, true);
diff --git a/src/ui/dialog/livepatheffect-editor.h b/src/ui/dialog/livepatheffect-editor.h
index d99177fdd..30706553e 100644
--- a/src/ui/dialog/livepatheffect-editor.h
+++ b/src/ui/dialog/livepatheffect-editor.h
@@ -59,7 +59,7 @@ private:
Gtk::Label explain_label;
Gtk::Frame effectapplication_frame;
Gtk::Frame effectcontrol_frame;
- Gtk::VBox effectapplication_vbox;
+ Gtk::HBox effectapplication_hbox;
Gtk::VBox effectcontrol_vbox;
SPDesktop * current_desktop;