summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakperm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/drakperm')
-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;