1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From 4588e22cc486cf297517168f52f0274133577827 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tiziano=20M=C3=BCller?= <tm@dev-zero.ch>
Date: Wed, 13 Jun 2012 09:52:40 +0200
Subject: [PATCH] fix broken status icon
---
blueman/plugins/applet/StatusIcon.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/blueman/plugins/applet/StatusIcon.py b/blueman/plugins/applet/StatusIcon.py
index fb02593..ed352ea 100644
--- a/blueman/plugins/applet/StatusIcon.py
+++ b/blueman/plugins/applet/StatusIcon.py
@@ -68,7 +68,7 @@ class StatusIcon(AppletPlugin, gtk.StatusIcon):
entry.connect("changed", self.on_entry_changed, ic, image)
__options__ = {"icon": {"type": str,
- "default": "blueman-tray",
+ "default": "blueman",
"name": _("Icon Name"),
"desc": _("Custom icon to use for the notification area"),
"decorator": widget_decorator
@@ -166,7 +166,7 @@ class StatusIcon(AppletPlugin, gtk.StatusIcon):
self.QueryVisibility()
def on_status_icon_resized(self):
- self.icon = "blueman-tray"
+ self.icon = "blueman"
#p = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 22, 22)
#p.fill(0)
--
1.7.8.6
|