summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xgurpmi27
2 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d306899d..710a0f74 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- gurpmi
o better handle closing dialogs
+ o fix not asking questions on error
Version 6.2 - 7 August 2008, Thierry Vignaud
diff --git a/gurpmi2 b/gurpmi2
index f3f9c235..9b3a62a0 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -299,6 +299,13 @@ sub do_install_3 () {
}
sync();
},
+ ask_yes_or_no => sub {
+ my ($title, $msg) = @_;
+ my $w = Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'warning', 'yes-no', $msg);
+ my $response = $w->run;
+ $w->destroy;
+ return $response eq 'ok';
+ },
completed => sub {
$urpmi_lock->unlock;
$rpm_lock->unlock;