summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-29 17:45:07 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-29 17:45:07 +0000
commit254d7c18468db86f49315a226628fe5a2e3ea36a (patch)
tree0b9e2a83409aa8bb265d7ebf91e4faabd435e16e
parentcac819a5a47e996de7b13800a62c6354354a2685 (diff)
downloaddrakx-backup-do-not-use-254d7c18468db86f49315a226628fe5a2e3ea36a.tar
drakx-backup-do-not-use-254d7c18468db86f49315a226628fe5a2e3ea36a.tar.gz
drakx-backup-do-not-use-254d7c18468db86f49315a226628fe5a2e3ea36a.tar.bz2
drakx-backup-do-not-use-254d7c18468db86f49315a226628fe5a2e3ea36a.tar.xz
drakx-backup-do-not-use-254d7c18468db86f49315a226628fe5a2e3ea36a.zip
(row_setting_dialog) further use mygtk2
-rwxr-xr-xperl-install/standalone/drakperm5
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm
index ef131b80e..23a6a2dd4 100755
--- a/perl-install/standalone/drakperm
+++ b/perl-install/standalone/drakperm
@@ -302,9 +302,8 @@ sub row_setting_dialog {
$browse->signal_connect(clicked => sub {
- my $file_dlg = gtknew('FileChooserDialog', title => N("Path selection"), action => 'select_folder');
- $file_dlg->set_modal(1);
- $file_dlg->set_transient_for($dlg);
+ my $file_dlg = gtknew('FileChooserDialog', title => N("Path selection"), action => 'select_folder',
+ modal => 1, transient_for => $dlg);
$file_dlg->set_filename($file->get_text);
$file_dlg->show;
my $answer = $file_dlg->run;