diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-13 17:55:37 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-13 17:55:37 +0100 |
commit | b097c128b037750e3f3afa3b7d14e6dfb44b317f (patch) | |
tree | 26e020b2dd2d2de3529e84a04dfd5a75823c2fcb /perl-install/mygtk3.pm | |
parent | 7d4103e8cad88235483ae4c988c97afe707f7f74 (diff) | |
download | drakx-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)
Diffstat (limited to 'perl-install/mygtk3.pm')
-rw-r--r-- | perl-install/mygtk3.pm | 1 |
1 files changed, 1 insertions, 0 deletions
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') { |