We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a46ae commit 94f929dCopy full SHA for 94f929d
1 file changed
tagstudio/src/qt/ts_qt.py
@@ -266,8 +266,11 @@ def start(self):
266
self.splash.show()
267
268
menu_bar = self.main_window.menuBar()
269
- menu_bar.setNativeMenuBar(False)
270
- # menu_bar.setStyleSheet('background:#00000000;')
+
+ # Allow the use of the native macOS menu bar.
271
+ if sys.platform != "darwin":
272
+ menu_bar.setNativeMenuBar(False)
273
274
file_menu = QMenu("&File", menu_bar)
275
edit_menu = QMenu("&Edit", menu_bar)
276
tools_menu = QMenu("&Tools", menu_bar)
0 commit comments