summaryrefslogtreecommitdiffstats
path: root/draklive-install
diff options
context:
space:
mode:
Diffstat (limited to 'draklive-install')
-rwxr-xr-xdraklive-install15
1 files changed, 15 insertions, 0 deletions
diff --git a/draklive-install b/draklive-install
index c084713..3b8224c 100755
--- a/draklive-install
+++ b/draklive-install
@@ -37,6 +37,21 @@ my $logfile = '/tmp/draklive-install.log';
}
}
+my $child_pid;
+END {
+ run_program::terminate($child_pid) if $child_pid;
+}
+
+sub wait_loop_callback {
+ my ($pid) = @_;
+ $child_pid = $pid;
+ while (Gtk3::events_pending()) {
+ Gtk3::main_iteration();
+ }
+ $child_pid = undef;
+}
+run_program::set_wait_loop_callback(\&wait_loop_callback, 50);
+
($::rootwidth, $::rootheight) = (Gtk3::Gdk::Screen::width, Gtk3::Gdk::Screen::height);
$::real_windowwidth = $::rootwidth > 800 ? 750 : 600;
$::real_windowheight = $::rootheight > 600 ? 500 : 400;