aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-02-01 19:39:02 +0100
committerAngelo Naselli <anaselli@linux.it>2014-02-01 19:39:02 +0100
commit6ce1fa14cae87c1711ea04f420ccc12633e187d0 (patch)
treee219bb35af66a2c3bf4512578d19cbabdc47997e /lib
parentaefde81978bb322ad5128314eb0c71a1cc430364 (diff)
downloadmanatools-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar
manatools-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.gz
manatools-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.bz2
manatools-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.xz
manatools-6ce1fa14cae87c1711ea04f420ccc12633e187d0.zip
added busy cursor for enabling/disabling service also
Diffstat (limited to 'lib')
-rw-r--r--lib/AdminPanel/Module/Services.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AdminPanel/Module/Services.pm b/lib/AdminPanel/Module/Services.pm
index 675646b5..d8c5a4d8 100644
--- a/lib/AdminPanel/Module/Services.pm
+++ b/lib/AdminPanel/Module/Services.pm
@@ -459,10 +459,11 @@ sub _servicePanel {
if ($wEvent->reason() == $yui::YEvent::ValueChanged) {
$item = $serviceTbl->changedItem();
if ($item) {
-
+ yui::YUI::app()->busyCursor();
set_service($item->label(), $item->checked());
# we can push/pop service, but this (slower) should return real situation
$self->_refreshRunningServices();
+ yui::YUI::app()->normalCursor();
}
}
}