Skip to content

Commit 5913478

Browse files
committed
Apply QTBUG-58610 fix only on Windows
1 parent cc3eacb commit 5913478

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orangecanvas/application/application.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def __init__(self, argv):
151151
sh.setShowShortcutsInContextMenus(True)
152152
if QT_VERSION_INFO < (5, 15): # QTBUG-61707
153153
macos_set_nswindow_tabbing(False)
154-
if QT_VERSION_INFO < (6, 0): # QTBUG-58610
154+
if QT_VERSION_INFO < (6, 0) and sys.platform == "win32": # QTBUG-58610
155155
# https://github.com/musescore/MuseScore/pull/5820
156156
QApplication.setFont(QApplication.font("QMessageBox"))
157157
self.configureStyle()

0 commit comments

Comments
 (0)