diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2010-09-07 21:11:53 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2010-09-07 21:11:53 +0000 |
| commit | 58e76e40aa940d05606412f232d179e867334455 (patch) | |
| tree | 356e52968dc3f9bbc137fb6fb1ce99d1ec8ba1cc /src/extension/param/description.cpp | |
| parent | Connected two toolbar buttons with the associated verbs (diff) | |
| download | inkscape-58e76e40aa940d05606412f232d179e867334455.tar.gz inkscape-58e76e40aa940d05606412f232d179e867334455.zip | |
Extensions. General UI improvements (gnome HIG). New group header extension parameter.
(bzr r9748)
Diffstat (limited to 'src/extension/param/description.cpp')
| -rw-r--r-- | src/extension/param/description.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/param/description.cpp b/src/extension/param/description.cpp index 656e58c49..d73439414 100644 --- a/src/extension/param/description.cpp +++ b/src/extension/param/description.cpp @@ -50,12 +50,12 @@ ParamDescription::get_widget (SPDocument * /*doc*/, Inkscape::XML::Node * /*node { if (_gui_hidden) return NULL; - Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_value))); + Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_value), Gtk::ALIGN_LEFT)); label->set_line_wrap(); label->show(); Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4)); - hbox->pack_start(*label, true, true, 5); + hbox->pack_start(*label, true, true, 12); hbox->show(); return hbox; |
