|
|
发表于 2004-8-25 16:13:06
|
显示全部楼层
You have to edit ~/.gdesklets/Sensors/StarterBar/IconSet.py
Search this:
Code:
watcher = FileWatcher(self.__orderfile)
and replace with:
Code:
watcher = FileWatcher.FileWatcher(self.__orderfile)
And search:
Code:
gconfwatcher = GConfWatcher("/desktop/gnome/interface/icon_theme")
and replace it with:
Code:
gconfwatcher = GConfWatcher.GConfWatcher("/desktop/gnome/interface/icon_theme")
Startbar should work again. |
|