Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
hypnotoad committed Apr 15, 2023
1 parent 1c1e703 commit c1309c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion board/fischertechnik/TXT/rootfs/opt/ftc/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def addWidget(self, w):
def show(self):
# go fullscreen on small displays, stay windowed otherwise
s = getScreenSize()
if s.height() < 480 || s.width() < 480:
if s.height() < 480 or s.width() < 480:
QWidget.showFullScreen(self)
else:
QWidget.show(self)
Expand Down

0 comments on commit c1309c2

Please sign in to comment.