[tuxdroid-svn] r5105 - software_suite_v3/smart-core/smart-server/trunk/util/system
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-13 13:59:55
|
Author: remi
Date: 2009-07-13 15:59:47 +0200 (Mon, 13 Jul 2009)
New Revision: 5105
Modified:
software_suite_v3/smart-core/smart-server/trunk/util/system/TaskBar.py
Log:
* Disabled function to refresh the taskbar icons (Crash on Vista)
Modified: software_suite_v3/smart-core/smart-server/trunk/util/system/TaskBar.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/system/TaskBar.py 2009-07-13 09:06:43 UTC (rev 5104)
+++ software_suite_v3/smart-core/smart-server/trunk/util/system/TaskBar.py 2009-07-13 13:59:47 UTC (rev 5105)
@@ -51,8 +51,11 @@
def refreshTaskBar():
"""Refresh the task bar.
"""
+ return
+ '''
if os.name == "nt":
__refreshTaskBarWin32()
else:
__refreshTaskBarUnix()
+ '''
|