diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2014-03-15 23:10:01 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2014-03-15 23:10:01 +0000 |
| commit | eca101b9f434da89b05ee70531546ae95541d47a (patch) | |
| tree | 8729322b9cbba2d305c143260bd881072a35fca6 /src/ui/dialog/object-properties.cpp | |
| parent | UI. Fix for Bug #1016889 (GTK3: status bar of XML Editor triggers resize of d... (diff) | |
| download | inkscape-eca101b9f434da89b05ee70531546ae95541d47a.tar.gz inkscape-eca101b9f434da89b05ee70531546ae95541d47a.zip | |
Fix build failure with GTK 3.0
(bzr r13156)
Diffstat (limited to 'src/ui/dialog/object-properties.cpp')
| -rw-r--r-- | src/ui/dialog/object-properties.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ui/dialog/object-properties.cpp b/src/ui/dialog/object-properties.cpp index c07f39819..28e9b360b 100644 --- a/src/ui/dialog/object-properties.cpp +++ b/src/ui/dialog/object-properties.cpp @@ -90,11 +90,6 @@ ObjectProperties::ObjectProperties() ); _desktop_tracker.connect(GTK_WIDGET(gobj())); -#if WITH_GTKMM_3_0 - CheckTable->set_row_homogeneous(); - CheckTable->set_column_homogeneous(true); -#endif - _init(); } @@ -285,6 +280,8 @@ void ObjectProperties::_init() #if WITH_GTKMM_3_0 Gtk::Grid *grid_cb = Gtk::manage(new Gtk::Grid()); + grid_cb->set_row_homogeneous(); + grid_cb->set_column_homogeneous(true); #else Gtk::Table *grid_cb = Gtk::manage(new Gtk::Table(1, 2, true)); #endif |
