summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-12-13 17:55:37 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-12-13 17:55:37 +0100
commitb097c128b037750e3f3afa3b7d14e6dfb44b317f (patch)
tree26e020b2dd2d2de3529e84a04dfd5a75823c2fcb
parent7d4103e8cad88235483ae4c988c97afe707f7f74 (diff)
downloaddrakx-b097c128b037750e3f3afa3b7d14e6dfb44b317f.tar
drakx-b097c128b037750e3f3afa3b7d14e6dfb44b317f.tar.gz
drakx-b097c128b037750e3f3afa3b7d14e6dfb44b317f.tar.bz2
drakx-b097c128b037750e3f3afa3b7d14e6dfb44b317f.tar.xz
drakx-b097c128b037750e3f3afa3b7d14e6dfb44b317f.zip
workaround a gtk+3 issue resulting in blacked embbeded tools (mga#11969)
it only happens with some locales (eg: pl/uk)
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/mygtk3.pm1
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index d48f6df77..b05535bdf 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- workaround a gtk+3 issue resulting in blacked embbeded tools with some
+ locales (eg: pl/uk) (mga#11969)
+
Version 16.13 - 10 December 2013
- localedrake:
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm
index a4f790d89..97e64290a 100644
--- a/perl-install/mygtk3.pm
+++ b/perl-install/mygtk3.pm
@@ -896,6 +896,7 @@ sub _gtk_any_Window {
if ($class eq 'Window') {
$w = "Gtk3::$class"->new(delete $opts->{type} || 'toplevel');
} elsif ($class eq 'Plug') {
+ delete $opts->{title};
$opts->{socket_id} or internal_error("cannot create a Plug without a socket_id");
$w = "Gtk3::$class"->new(delete $opts->{socket_id});
} elsif ($class eq 'FileChooserDialog') {