From 8d15ef833af55e3e864b078c52b9e805ada460ed Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 29 Sep 2008 17:31:06 +0000 Subject: use Gtk+2's FileChooserDialog (#40717) git-svn-id: http://svn.mandriva.com/svn/soft/draksnapshot/trunk@247037 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94 --- draksnapshot-config | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'draksnapshot-config') diff --git a/draksnapshot-config b/draksnapshot-config index b12d8dc..1e7000f 100755 --- a/draksnapshot-config +++ b/draksnapshot-config @@ -153,21 +153,16 @@ gtkadd($my_win->{window}, clicked => sub { my $file_dlg; $file_dlg = - gtknew('FileSelection', title => N("Path selection"), - ok_button => { - clicked => sub { - $where->set_text($file_dlg->get_filename); - $file_dlg->destroy; - }, - }, - cancel_button => { - clicked => sub { $file_dlg->destroy }, - }, - ); + gtknew('FileChooserDialog', title => N("Path selection"), action => 'select_folder'); $file_dlg->set_transient_for($my_win->{real_window}); $file_dlg->set_modal(1); $file_dlg->set_filename($where->get_text); $file_dlg->show; + my $answer = $file_dlg->run; + if ($answer eq 'ok') { + $where->set_text($file_dlg->get_filename); + } + $file_dlg->destroy; }, ), ]), -- cgit v1.2.1