mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-28 09:22:59 +02:00
Get rid of unneccessary notify specific icon
This commit is contained in:
parent
3381e02158
commit
f42190580c
2 changed files with 2 additions and 2 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB |
|
|
@ -26,7 +26,7 @@ def __call__(self, body, summary=None, replaces_id=None, timeout=0):
|
|||
|
||||
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 @@ def get_notifier(systray=None):
|
|||
'''
|
||||
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue