diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 991c978db..ab5d1133b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,8 @@ o fix missing maximize & minimize buttons with gnome WM (#43540) by reverting change from 2008-09-01: "make all windows are "dialog", so that gurpmi.addmedia during install displays nicely" + o make all windows be "dialog" during install, so that + gurpmi.addmedia during install displays nicely - diskdrake o keep current UUID when formatting ext2/ext3 (was already done for swap), so that fstab on other distros continue to work (#39913) diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 0d69f712e..9f5310849 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -656,7 +656,7 @@ sub _gtk_any_Window { $w = "Gtk2::$class"->new; } - if ($::isInstall) { + if ($::isInstall || $ENV{DURING_INSTALL}) { $w->set_type_hint('dialog'); # for matchbox window manager } |