diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-06 14:32:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-06 14:32:22 +0000 |
commit | 1556ee6d31f69ded3ed62081851d67fcfc1af9e7 (patch) | |
tree | fe3ec3bd15059904703cdb175613a837cbfa03b9 /perl-install | |
parent | b9d45c0dac8efaf2cc2b96098411be5457c3a35e (diff) | |
download | drakx-1556ee6d31f69ded3ed62081851d67fcfc1af9e7.tar drakx-1556ee6d31f69ded3ed62081851d67fcfc1af9e7.tar.gz drakx-1556ee6d31f69ded3ed62081851d67fcfc1af9e7.tar.bz2 drakx-1556ee6d31f69ded3ed62081851d67fcfc1af9e7.tar.xz drakx-1556ee6d31f69ded3ed62081851d67fcfc1af9e7.zip |
(new) fix more strange focus bugs
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 3d0e2788c..5029fd0fa 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- fix more strange focus bugs + Version 11.4 - 5 August 2008 - fix strange focus bugs diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index fd7bdfd89..5daf36493 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -735,7 +735,7 @@ sub new { $::isInstall ? (banner => Gtk2::Banner->new($icon, $title || (get_default_step_items()))) : (), $::isStandalone && $banner_title && $icon ? (banner => Gtk2::Banner->new($icon, $banner_title)) : (), width => $opts{width}, height => $opts{height}, default_width => $opts{default_width}, default_height => $opts{default_height}, - modal => $o->{pop_it} && ($opts{modal} || $grab || $o->{grab}) || $o->{modal}, + modal => (!$o->{pop_it} && !$::isInstall) && ($opts{modal} || $grab || $o->{grab}) || $o->{modal}, no_Window_Manager => exists $opts{no_Window_Manager} ? $opts{no_Window_Manager} : !$::isStandalone, if_(!$::isInstall, icon_no_error => wm_icon()), if_($o->{transient}, transient_for => $o->{transient}), |