diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-30 15:53:50 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-30 15:53:50 +0000 |
commit | 0de73a3a8e35f3bd346ce03618e70267880e9a3c (patch) | |
tree | 0e72fd10431559d0c03ec5caf4763af4f460432c /mdkapplet | |
parent | 68ea81939be3b96c31d89bb694c6915a9a03ddce (diff) | |
download | mgaonline-0de73a3a8e35f3bd346ce03618e70267880e9a3c.tar mgaonline-0de73a3a8e35f3bd346ce03618e70267880e9a3c.tar.gz mgaonline-0de73a3a8e35f3bd346ce03618e70267880e9a3c.tar.bz2 mgaonline-0de73a3a8e35f3bd346ce03618e70267880e9a3c.tar.xz mgaonline-0de73a3a8e35f3bd346ce03618e70267880e9a3c.zip |
set busy cursor while running mdkupdate
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -59,6 +59,9 @@ sub my_sprintf_fixutf8 { mdkonline::get_release() < 2006.0 ? common::sprintf_fixutf8(@_) : @_; } + +my $insensitive_while_running_a_child; + #compatibility mkdir_p($localdir) if !-d $localdir; -e "$ENV{HOME}/.mdkonline" and system("mv", "$ENV{HOME}/.mdkonline", $localfile); @@ -191,7 +194,11 @@ sub fork_exec { sub refresh_gui { my ($sens) = @_; !$conf_launched and silentCheck(); $conf_launched = 0; + my $w = $::main_window->window; + $insensitive_while_running_a_child = !$sens; + $sens ? gtkset_mousecursor_normal($w) : gtkset_mousecursor_wait($w); $MW_vbox and $MW_vbox->set_sensitive($sens); + gtkflush(); } sub showMainWindow() { @@ -281,7 +288,7 @@ sub silentCheck() { my $w = $::main_window ? $::main_window->window : undef; gtkset_mousecursor_wait($w); gtkflush(); go2State('busy'); gtkflush(); - gtkset_mousecursor_normal($w); + gtkset_mousecursor_normal($w) if !$insensitive_while_running_a_child; my $response = mdkonline::soap_get_updates_for_host($h{HOST_ID}, $h{HOST_KEY}); my $status_err = mdkonline::check_server_response($response); if ($status_err eq 'OK') { |