don't add receivers to the status icon tooltip

This commit is contained in:
Daniel Pavel 2013-05-26 02:03:58 +03:00
parent 7e81dede2f
commit b6ab795878
1 changed files with 3 additions and 0 deletions

View File

@ -112,6 +112,9 @@ def _generate_tooltip_lines(icon):
yield ''
for _, serial, name, status in icon._devices_info:
if serial is None: # receiver
continue
yield '<b>%s</b>' % name
p = str(status)