aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2023-10-23 15:17:42 +1100
committerMiguel Jacq <mig@mig5.net>2023-10-23 15:17:42 +1100
commit969d02c90b62c5c39037be18c361b0c52b671e2e (patch)
tree003cbd14305f6835994ac38e448a2739404ac172
parentf880a931bb955b1c9b3bd048fdcb7d56e45905c2 (diff)
downloadonionshare-remove_qt_mac_wants_layer.tar.gz
onionshare-remove_qt_mac_wants_layer.zip
Remove QT_MAC_WANTS_LAYER as we are on pyside 6 nowremove_qt_mac_wants_layer
-rw-r--r--desktop/onionshare/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/desktop/onionshare/__init__.py b/desktop/onionshare/__init__.py
index 537e3802..72491e7f 100644
--- a/desktop/onionshare/__init__.py
+++ b/desktop/onionshare/__init__.py
@@ -144,10 +144,6 @@ def main():
common = Common()
common.display_banner()
- # Required for macOS Big Sur: https://stackoverflow.com/a/64878899
- if common.platform == "Darwin":
- os.environ["QT_MAC_WANTS_LAYER"] = "1"
-
# Start the Qt app
global qtapp
qtapp = Application(common)