From 6536b74a59231d35853988583e73ffe2a096ad93 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Wed, 29 Aug 2012 12:53:36 +0000 Subject: [PATCH] GTK3: avoid crash in style editor svn: r20282 --- src/gui/glade/styleeditor.glade | 90 +++++++++++++++-------------- src/gui/plug/report/_styleeditor.py | 4 +- 2 files changed, 48 insertions(+), 46 deletions(-) diff --git a/src/gui/glade/styleeditor.glade b/src/gui/glade/styleeditor.glade index 5f23461b9..3fc0911c9 100644 --- a/src/gui/glade/styleeditor.glade +++ b/src/gui/glade/styleeditor.glade @@ -50,6 +50,7 @@ True False + vertical True @@ -290,7 +291,7 @@ 4 GTK_FILL - + @@ -311,7 +312,7 @@ 1 2 GTK_FILL - + @@ -333,7 +334,7 @@ 2 3 GTK_FILL - + @@ -351,7 +352,7 @@ 3 4 GTK_FILL - + @@ -368,7 +369,7 @@ 4 5 GTK_FILL - + @@ -385,7 +386,7 @@ 4 5 GTK_FILL - + @@ -403,7 +404,7 @@ 5 6 GTK_FILL - + @@ -443,7 +444,7 @@ 8 9 GTK_FILL - + @@ -464,7 +465,7 @@ 9 10 GTK_FILL - + @@ -485,7 +486,7 @@ 10 11 GTK_FILL - + @@ -501,7 +502,7 @@ 6 7 GTK_FILL - + @@ -518,7 +519,7 @@ 6 7 GTK_FILL - + @@ -598,7 +599,7 @@ 1 2 GTK_FILL - + @@ -620,7 +621,7 @@ 1 2 GTK_FILL - + @@ -642,7 +643,7 @@ 1 2 GTK_FILL - + @@ -664,7 +665,7 @@ 1 2 GTK_FILL - + @@ -699,7 +700,7 @@ 2 3 GTK_FILL - + @@ -718,7 +719,7 @@ 7 8 GTK_FILL - + @@ -735,7 +736,7 @@ 5 6 GTK_FILL - + @@ -752,7 +753,7 @@ 6 7 GTK_FILL - + @@ -769,7 +770,7 @@ 7 8 GTK_FILL - + @@ -788,7 +789,7 @@ 6 7 GTK_FILL - + @@ -807,7 +808,7 @@ 5 6 GTK_FILL - + @@ -826,7 +827,7 @@ 8 9 GTK_FILL - + @@ -845,7 +846,7 @@ 9 10 GTK_FILL - + @@ -864,7 +865,7 @@ 10 11 GTK_FILL - + @@ -881,7 +882,7 @@ 9 10 GTK_FILL - + @@ -898,7 +899,7 @@ 10 11 GTK_FILL - + @@ -917,7 +918,7 @@ 11 12 GTK_FILL - + @@ -934,7 +935,7 @@ 4 6 7 - + @@ -951,7 +952,7 @@ 4 7 8 - + @@ -968,7 +969,7 @@ 4 5 6 - + @@ -985,7 +986,7 @@ 4 9 10 - + @@ -1002,7 +1003,7 @@ 4 10 11 - + @@ -1023,7 +1024,7 @@ 13 14 GTK_FILL - + @@ -1044,7 +1045,7 @@ 13 14 GTK_FILL - + @@ -1065,7 +1066,7 @@ 13 14 GTK_FILL - + @@ -1084,7 +1085,7 @@ 12 13 GTK_FILL - + @@ -1101,7 +1102,7 @@ 4 12 13 - + @@ -1118,7 +1119,7 @@ 12 13 GTK_FILL - + @@ -1139,7 +1140,7 @@ 13 14 GTK_FILL - + @@ -1155,7 +1156,7 @@ 3 4 GTK_FILL - + @@ -1171,7 +1172,7 @@ 4 5 GTK_FILL - + @@ -1188,7 +1189,7 @@ 3 4 GTK_FILL - + @@ -1244,6 +1245,7 @@ True False + vertical True diff --git a/src/gui/plug/report/_styleeditor.py b/src/gui/plug/report/_styleeditor.py index 45c0d75d8..773220ece 100644 --- a/src/gui/plug/report/_styleeditor.py +++ b/src/gui/plug/report/_styleeditor.py @@ -100,7 +100,7 @@ class StyleListDisplay(object): [(_('Style'), -1, 10)], ) self.redraw() if parent_window: - self.set_transient_for(parent_window) + self.window.set_transient_for(parent_window) self.window.run() self.window.destroy() @@ -229,7 +229,7 @@ class StyleEditor(object): self.plist.select_row(0) if self.parent: - self.set_transient_for(parent.window) + self.window.set_transient_for(parent.window) self.window.run() self.window.destroy()