summaryrefslogtreecommitdiffstats
path: root/src/extension/parameter.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-05-27 17:24:27 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-05-27 17:24:27 +0000
commit009f26b25c4178125e2493350d579b20263d5e53 (patch)
treea259ee5575a172169138c71212fb93e8b8926f1b /src/extension/parameter.cpp
parentbug 1495265: css fallback fonts broken on win32 (diff)
downloadinkscape-009f26b25c4178125e2493350d579b20263d5e53.tar.gz
inkscape-009f26b25c4178125e2493350d579b20263d5e53.zip
fix 1496081
(bzr r1030)
Diffstat (limited to 'src/extension/parameter.cpp')
-rw-r--r--src/extension/parameter.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/extension/parameter.cpp b/src/extension/parameter.cpp
index b3b808830..a034022d9 100644
--- a/src/extension/parameter.cpp
+++ b/src/extension/parameter.cpp
@@ -694,7 +694,7 @@ ParamIntAdjustment::val_changed (void)
Gtk::Widget *
ParamFloat::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
{
- Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_text), Gtk::ALIGN_LEFT));
label->show();
@@ -718,7 +718,7 @@ ParamFloat::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
Gtk::Widget *
ParamInt::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
{
- Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_text), Gtk::ALIGN_LEFT));
label->show();
@@ -779,7 +779,7 @@ ParamBoolCheckButton::on_toggle (void)
Gtk::Widget *
ParamBool::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
{
- Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_text), Gtk::ALIGN_LEFT));
label->show();
@@ -835,15 +835,15 @@ ParamStringEntry::changed_text (void)
Gtk::Widget *
ParamString::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
{
- Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
Gtk::Label * label = Gtk::manage(new Gtk::Label(_(_text), Gtk::ALIGN_LEFT));
label->show();
- hbox->pack_start(*label, true, true);
+ hbox->pack_start(*label, false, false);
ParamStringEntry * textbox = new ParamStringEntry(this, doc, node);
textbox->show();
- hbox->pack_start(*textbox, false, false);
+ hbox->pack_start(*textbox, true, true);
hbox->show();
@@ -903,7 +903,7 @@ ParamDescription::get_widget (SPDocument * doc, Inkscape::XML::Node * node)
label->set_line_wrap();
label->show();
- Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox());
+ Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
hbox->pack_start(*label, true, true, 5);
hbox->show();