diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-03 09:10:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-03 09:10:04 +0000 |
commit | 0aa036c1638acb931cc46b70cf7935ea9c3154e3 (patch) | |
tree | 2b26cf25450e25e3ea792ea64e5455e2d231a52d /perl-install/standalone | |
parent | 10be1b164d2ee27786f8dc8e38f1d7e8dd77fa62 (diff) | |
download | drakx-0aa036c1638acb931cc46b70cf7935ea9c3154e3.tar drakx-0aa036c1638acb931cc46b70cf7935ea9c3154e3.tar.gz drakx-0aa036c1638acb931cc46b70cf7935ea9c3154e3.tar.bz2 drakx-0aa036c1638acb931cc46b70cf7935ea9c3154e3.tar.xz drakx-0aa036c1638acb931cc46b70cf7935ea9c3154e3.zip |
smoother gui: let main windows be unreachable until modal dialog is closed
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakperm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm index 02bbf23a9..7e56d8a6d 100755 --- a/perl-install/standalone/drakperm +++ b/perl-install/standalone/drakperm @@ -282,6 +282,7 @@ sub row_setting_dialog { $browse->signal_connect(clicked => sub { my $file_dlg = new Gtk2::FileSelection(N("Path selection")); $file_dlg->set_modal(1); + $file_dlg->set_transient_for($dlg); $file_dlg->show; $file_dlg->set_filename($file->get_text); $file_dlg->cancel_button->signal_connect( clicked => sub { $file_dlg->destroy }); |