Skip to content

Commit

Permalink
Apply QTBUG-58610 fix only on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Nov 19, 2024
1 parent cc3eacb commit 5913478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orangecanvas/application/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def __init__(self, argv):
sh.setShowShortcutsInContextMenus(True)
if QT_VERSION_INFO < (5, 15): # QTBUG-61707
macos_set_nswindow_tabbing(False)
if QT_VERSION_INFO < (6, 0): # QTBUG-58610
if QT_VERSION_INFO < (6, 0) and sys.platform == "win32": # QTBUG-58610
# https://github.com/musescore/MuseScore/pull/5820
QApplication.setFont(QApplication.font("QMessageBox"))
self.configureStyle()
Expand Down

0 comments on commit 5913478

Please sign in to comment.