diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-04-15 21:12:23 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-04-15 21:12:23 +0000 |
| commit | 6adfe38f017a9d20c79cba9f52048376ca5e362b (patch) | |
| tree | 7181cafe324a15108895cd0cd0a861723f996a1c /src/ege-adjustment-action.cpp | |
| parent | When no grid is defined but "toggle grid" is pressed => create a default rect... (diff) | |
| download | inkscape-6adfe38f017a9d20c79cba9f52048376ca5e362b.tar.gz inkscape-6adfe38f017a9d20c79cba9f52048376ca5e362b.zip | |
Visual layout and spacing cleanup
(bzr r2906)
Diffstat (limited to 'src/ege-adjustment-action.cpp')
| -rw-r--r-- | src/ege-adjustment-action.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ege-adjustment-action.cpp b/src/ege-adjustment-action.cpp index 5e4fcefa3..1b4062b2f 100644 --- a/src/ege-adjustment-action.cpp +++ b/src/ege-adjustment-action.cpp @@ -714,6 +714,7 @@ static GtkWidget* create_tool_item( GtkAction* action ) g_object_get_property( G_OBJECT(action), "label", &value ); const gchar* sss = g_value_get_string( &value ); GtkWidget* lbl = gtk_label_new( sss ? sss : "wwww" ); + GtkWidget* filler1 = gtk_label_new(" "); { GValue tooltip; @@ -731,8 +732,10 @@ static GtkWidget* create_tool_item( GtkAction* action ) gtk_misc_set_alignment( GTK_MISC(lbl), 1.0, 0.5 ); + gtk_box_pack_start( GTK_BOX(hb), filler1, FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX(hb), lbl, FALSE, FALSE, 0 ); - gtk_box_pack_end( GTK_BOX(hb), spinbutton, FALSE, FALSE, 0 ); + gtk_box_pack_start( GTK_BOX(hb), spinbutton, FALSE, FALSE, 0 ); + gtk_container_add( GTK_CONTAINER(item), hb ); if ( act->private_data->selfId ) { |
