diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -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 @@ -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); |