aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AdminPanel/Module
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/AdminPanel/Module
parentaefde81978bb322ad5128314eb0c71a1cc430364 (diff)
downloadcolin-keep-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar
colin-keep-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.gz
colin-keep-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.bz2
colin-keep-6ce1fa14cae87c1711ea04f420ccc12633e187d0.tar.xz
colin-keep-6ce1fa14cae87c1711ea04f420ccc12633e187d0.zip
added busy cursor for enabling/disabling service also
Diffstat (limited to 'lib/AdminPanel/Module')
-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 675646b..d8c5a4d 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();
}
}
}