1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 15:57:14 +03:00

Merge pull request #2257 from HullSeals/fix/2256/fix-systray-deiconfiy

[2256] Allow Variable Num of Variables
This commit is contained in:
David Sangrey 2024-06-17 14:38:28 -04:00 committed by GitHub
commit 26e11564ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -454,7 +454,7 @@ class AppWindow:
if sys.platform == 'win32':
from simplesystray import SysTrayIcon
def open_window(systray: 'SysTrayIcon') -> None:
def open_window(systray: 'SysTrayIcon', *args) -> None:
self.w.deiconify()
menu_options = (("Open", None, open_window),)