Browse Source

follow-up #3361 (notifications for incoming transactions)

3.0.x
SomberNight 7 years ago
parent
commit
b950904ef4
  1. 6
      gui/qt/main_window.py

6
gui/qt/main_window.py

@ -572,7 +572,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
def notify(self, message): def notify(self, message):
if self.tray: if self.tray:
self.tray.showMessage("Electrum", message, QIcon(":icons/electrum_dark_icon"), 20000) try:
# this requires Qt 5.9
self.tray.showMessage("Electrum", message, QIcon(":icons/electrum_dark_icon"), 20000)
except TypeError:
self.tray.showMessage("Electrum", message, QSystemTrayIcon.Information, 20000)

Loading…
Cancel
Save