Skip to content

Commit

Permalink
fix OS check
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriWahl committed Oct 18, 2024
1 parent 93a0080 commit 6270618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nagstamon/QUI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
APP = QApplication(sys.argv)

# as long as Windows 11 + Qt6 looks that ugly it's better to choose another app style
if OS_WINDOWS and platform.release() >= '11':
if OS == OS_WINDOWS and platform.release() >= '11':
APP.setStyle('fusion')

# fixed shortened and lowered color names for cells, also used by statusbar label snippets
Expand Down

0 comments on commit 6270618

Please sign in to comment.