diff options
| author | su_v <suv-sf@users.sourceforge.net> | 2013-03-13 17:05:07 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2013-03-13 17:05:07 +0000 |
| commit | 1941fa9b9ad646e435d27d7cb79fbc49a3be6eba (patch) | |
| tree | c2aee2d3f26e39ea184cfa315eabab74d6a95c09 | |
| parent | Migrate remaining dialogs to Gtk::Grid (diff) | |
| download | inkscape-1941fa9b9ad646e435d27d7cb79fbc49a3be6eba.tar.gz inkscape-1941fa9b9ad646e435d27d7cb79fbc49a3be6eba.zip | |
GTK3: fix layout of 'Fill and Stroke' tabs (see bug #1088264)
(bzr r12200)
| -rw-r--r-- | src/ui/dialog/fill-and-stroke.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/fill-and-stroke.cpp b/src/ui/dialog/fill-and-stroke.cpp index 9c27a5e61..8de2da18b 100644 --- a/src/ui/dialog/fill-and-stroke.cpp +++ b/src/ui/dialog/fill-and-stroke.cpp @@ -132,14 +132,14 @@ void FillAndStroke::_layoutPageFill() { fillWdgt = manage(sp_fill_style_widget_new()); - _page_fill->table().attach(*fillWdgt, 0, 1, 0, 1); + _page_fill->table().attach(*fillWdgt, 0, 0, 1, 1); } void FillAndStroke::_layoutPageStrokePaint() { strokeWdgt = manage(sp_stroke_style_paint_widget_new()); - _page_stroke_paint->table().attach(*strokeWdgt, 0, 1, 0, 1); + _page_stroke_paint->table().attach(*strokeWdgt, 0, 0, 1, 1); } void @@ -148,7 +148,7 @@ FillAndStroke::_layoutPageStrokeStyle() //Gtk::Widget *strokeStyleWdgt = manage(Glib::wrap(sp_stroke_style_line_widget_new())); //Gtk::Widget *strokeStyleWdgt = static_cast<Gtk::Widget *>(sp_stroke_style_line_widget_new()); strokeStyleWdgt = sp_stroke_style_line_widget_new(); - _page_stroke_style->table().attach(*strokeStyleWdgt, 0, 1, 0, 1); + _page_stroke_style->table().attach(*strokeStyleWdgt, 0, 0, 1, 1); } void |
