git.annexia.org
/
techtalk-pse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c431a4b
)
Add a hack to remove the about dialog.
author
Richard Jones
<rjones@redhat.com>
Wed, 10 Mar 2010 14:40:41 +0000
(14:40 +0000)
committer
Richard Jones
<rjones@redhat.com>
Wed, 10 Mar 2010 14:40:41 +0000
(14:40 +0000)
techtalk-pse.pl
patch
|
blob
|
history
diff --git
a/techtalk-pse.pl
b/techtalk-pse.pl
index
6bd310f
..
84f83e8
100755
(executable)
--- a/
techtalk-pse.pl
+++ b/
techtalk-pse.pl
@@
-256,6
+256,11
@@
if ($splash) {
$w->run;
print STDERR "calling \$w->destroy on about dialog\n" if $verbose;
$w->destroy;
+
+ # The dialog doesn't really get destroyed here. We have
+ # to add this hack to really destroy it.
+ Glib::Idle->add (sub { Gtk2->main_quit; return FALSE; });
+ Gtk2->main;
}
MAIN: while (1) {