summaryrefslogtreecommitdiffstats
path: root/src/extension/prefdialog.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-03-29 05:41:26 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-03-29 05:41:26 +0000
commit62d128901476984ef9b6941f3358d1705dced6b6 (patch)
tree8d8da08b19a19fe5329a25442eeca266e14ad7c4 /src/extension/prefdialog.cpp
parent(bzr r345) (diff)
downloadinkscape-62d128901476984ef9b6941f3358d1705dced6b6.tar.gz
inkscape-62d128901476984ef9b6941f3358d1705dced6b6.zip
r10982@tres: ted | 2006-02-18 22:08:28 -0800
Adding in a little bit of horizontal spacing. Cleans things up a touch. (bzr r346)
Diffstat (limited to 'src/extension/prefdialog.cpp')
-rw-r--r--src/extension/prefdialog.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp
index fea52d4ec..0006874f1 100644
--- a/src/extension/prefdialog.cpp
+++ b/src/extension/prefdialog.cpp
@@ -21,7 +21,10 @@ namespace Extension {
PrefDialog::PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls) :
Gtk::Dialog::Dialog(name + _(" Preferences"), true, true), _help(help), _name(name)
{
- this->get_vbox()->pack_start(*controls, true, true, 5);
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ hbox->pack_start(*controls, true, true, 6);
+ hbox->show();
+ this->get_vbox()->pack_start(*hbox, true, true, 6);
Gtk::Button * help_button = add_button(Gtk::Stock::HELP, Gtk::RESPONSE_HELP);
if (_help == NULL)