diff options
author | natural <natural> | 2006-12-20 02:56:15 +0000 |
---|---|---|
committer | natural <natural> | 2006-12-20 02:56:15 +0000 |
commit | 9a71cc9d01fc4eb398aea5efdd1b9b7f85824898 (patch) | |
tree | 243e119796327d2cb2c6c33c3b3d291a7e3f24a9 /kberylsettings/contentframe.py | |
parent | e87833f32ea631dab7391484f0f89bedf669b80c (diff) | |
download | kberylsettings-9a71cc9d01fc4eb398aea5efdd1b9b7f85824898.tar.gz kberylsettings-9a71cc9d01fc4eb398aea5efdd1b9b7f85824898.tar.bz2 |
Added systray icon support, and blue version of beryl settings svg icon for it.
Fixed actions and action highlighting.
Removed pixmap/Makefile/*. Need to make symlinks sometime soon.
Other fixes as well.
Diffstat (limited to 'kberylsettings/contentframe.py')
-rw-r--r-- | kberylsettings/contentframe.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kberylsettings/contentframe.py b/kberylsettings/contentframe.py index 4e43628..1ce0728 100644 --- a/kberylsettings/contentframe.py +++ b/kberylsettings/contentframe.py @@ -94,12 +94,13 @@ class ContentFrame(WidgetStack): @param plugin berylsettings Plugin instance @return None """ - logofile = 'file://%s' % (abspath(App.basedir + '/html/beryl-manager.png'), ) + logofile = 'file://%s' % (abspath(App.basedir + '/html/beryl-manager.png'), ) htmlsrc = open(abspath(App.basedir + '/html/plugin.html')).read() if plugin is None: pluginname = 'Beryl Settings' plugindesc = 'Beryl Settings - Get Your Effects On!' else: + #logofile = 'file://%s' % (abspath(App.basedir + '/pixmaps/beryl-settings-section-%s.png' % plugin.Name), ) pluginname = plugin.ShortDesc plugindesc = plugin.LongDesc self.infoHtml.begin() |