mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
Fix blank trayicon on windows standalone build
This commit is contained in:
parent
bcda5e35e7
commit
2eea8671d8
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ class ElectrumWindow(QMainWindow):
|
|||
self.config = config
|
||||
self.current_account = self.config.get("current_account", None)
|
||||
|
||||
self.icon = QIcon(os.getcwd() + '/icons/electrum.png')
|
||||
self.icon = QIcon(':/icons/electrum.png')
|
||||
self.tray = QSystemTrayIcon(self.icon, self)
|
||||
self.tray.setToolTip('Electrum')
|
||||
self.tray.activated.connect(self.tray_activated)
|
||||
|
|
Loading…
Add table
Reference in a new issue