From: gouldtj Date: Wed, 29 Mar 2006 05:41:26 +0000 (+0000) Subject: r10982@tres: ted | 2006-02-18 22:08:28 -0800 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4fb12df08fef1f32dab91b3a94d708b7e69700aa;p=inkscape.git r10982@tres: ted | 2006-02-18 22:08:28 -0800 Adding in a little bit of horizontal spacing. Cleans things up a touch. --- 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)