Skip to content

Commit

Permalink
#4360 more direct import path
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 23, 2024
1 parent b6ab810 commit 04baa05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xpra/platform/darwin/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SHOW_QR,
)
from xpra.platform.paths import get_icon
from xpra.platform.darwin.gui import get_OSXApplication
from xpra.platform.darwin import get_OSXApplication
from xpra.client.gui import features
from xpra.log import Logger

Expand Down
2 changes: 1 addition & 1 deletion xpra/platform/darwin/tray.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class OSXTray(TrayBase):

def __init__(self, *args):
super().__init__(*args)
from xpra.platform.darwin.gui import get_OSXApplication
from xpra.platform.darwin import get_OSXApplication
self.macapp = get_OSXApplication()
assert self.macapp, "cannot use OSX Tray without the native gtkosx_application bindings"
self.last_attention_request_id = -1
Expand Down

0 comments on commit 04baa05

Please sign in to comment.