diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-18 17:05:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-18 17:05:12 +0000 |
commit | c14c7fabfa34df8a28cd70af88c097a10cbfefc5 (patch) | |
tree | bf38e820316c53d092dbad9e8a689840eba9a027 | |
parent | d4180c529f9aa044f2792c8f632be4e8234e66cb (diff) | |
download | drakx-c14c7fabfa34df8a28cd70af88c097a10cbfefc5.tar drakx-c14c7fabfa34df8a28cd70af88c097a10cbfefc5.tar.gz drakx-c14c7fabfa34df8a28cd70af88c097a10cbfefc5.tar.bz2 drakx-c14c7fabfa34df8a28cd70af88c097a10cbfefc5.tar.xz drakx-c14c7fabfa34df8a28cd70af88c097a10cbfefc5.zip |
fix broken focus during install
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index b3d5eace6..852cd0a2c 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -684,6 +684,8 @@ sub _create_Window { $w->set_uposition(max(0, $::rootwidth - ($::windowwidth + $wi) / 2), max(0, $::logoheight + ($::windowheight - $he) / 2)); }); + #- without this, the focus is broken during install, though this is not needed during X test, why?? + $w->show; } $w; |