aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake.pm
diff options
context:
space:
mode:
Diffstat (limited to 'rpmdrake.pm')
-rw-r--r--rpmdrake.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm
index 0e9f734b..1ea91543 100644
--- a/rpmdrake.pm
+++ b/rpmdrake.pm
@@ -118,8 +118,9 @@ sub fatal_msg {
}
sub wait_msg {
- my $mainw = ugtk2->new('rpmdrake', grab => 1);
- my $label = Gtk2::Label->new($_[0]);
+ my ($msg, %options) = @_;
+ my $mainw = ugtk2->new('rpmdrake', grab => 1, if_(exists $options{transient}, transient => $options{transient}));
+ my $label = Gtk2::Label->new($msg);
gtkadd($mainw->{window}, gtkpack(gtkadd(create_vbox(), $label)));
$label->signal_connect(expose_event => sub { $mainw->{displayed} = 1 });
$mainw->sync until $mainw->{displayed};