From 572dabbb04a852395e70a60c8820462ce971341e Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 9 Sep 2008 17:53:30 +0000 Subject: (_gtk_any_Window) make all windows be "dialog" during installation, so that gurpmi.addmedia during install displays nicely --- perl-install/NEWS | 2 ++ perl-install/mygtk2.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') 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 } -- cgit v1.2.1