summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xgurpmi23
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index bab626f5..03c213ff 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,7 @@
only add media flagged "update"
- gurpmi2
o nicer default window size
+ o render nicely under matchbox during install
Version 6.4 - 14 August 2008, Thierry Vignaud
diff --git a/gurpmi2 b/gurpmi2
index 5363c87a..5ff4ff88 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -76,7 +76,8 @@ $mainw->set_title(N("RPM installation"));
$mainw->signal_connect(destroy => \&quit);
$mainw->set_position('center');
$mainw->set_default_size($progressbar_size, 60);
-$mainw->set_modal(0);
+$mainw->set_type_hint('dialog'); # for matchbox window manager during install
+$mainw->set_modal(1); # for matchbox window manager during install
$mainbox = Gtk2::VBox->new(0, 5);
$mainw->add($mainbox);