1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-01-03 13:45:49 +00:00

Limit objc dependency. Fix maximize issue.

This commit is contained in:
Manu 2018-11-09 14:01:16 +08:00
parent 20ab578a17
commit 57c0c4d47b
2 changed files with 3 additions and 2 deletions

View file

@ -38,7 +38,7 @@ install_requires =
keyring
apscheduler
sentry-sdk
pyobjc-framework-Cocoa
pyobjc-framework-Cocoa; sys_platform == 'darwin'
tests_require =
pytest
pytest-qt

View file

@ -25,6 +25,7 @@ def deliver(self, title, text):
notification.setTitle_(title)
notification.setInformativeText_(text)
center = NSUserNotificationCenter.defaultUserNotificationCenter()
if center is not None: # Only works when run from app bundle.
center.deliverNotification_(notification)