Get rid of unneccessary notify specific icon

This commit is contained in:
Kovid Goyal 2016-08-24 19:29:43 +05:30
parent 3381e02158
commit f42190580c
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@ class Notifier(object):
class DBUSNotifier(Notifier):
ICON = I('notify.png')
ICON = I('lt.png')
def __init__(self, server, path, interface):
self.ok, self.err = True, None
@ -176,7 +176,7 @@ if __name__ == '__main__':
'''
from PyQt5.Qt import QApplication, QSystemTrayIcon, QIcon
app = QApplication([])
ic = QIcon(I('notify.png'))
ic = QIcon(I('lt.png'))
tray = QSystemTrayIcon(ic)
tray.setVisible(True)
n = QtNotifier(tray)