Skip to content

Commit

Permalink
Fix broken macOS check (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
luk1337 authored Sep 30, 2024
1 parent 0cb4df0 commit 4f1fe8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncplay/ui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@ def addTopLayout(self, window):
self.listTreeView.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
self.listTreeView.customContextMenuRequested.connect(self.openRoomMenu)
window.listlabel = QtWidgets.QLabel(getMessage("userlist-heading-label"))
if isMacOS:
if isMacOS():
window.listlabel.setMinimumHeight(21)
window.sslButton = QtWidgets.QPushButton(QtGui.QPixmap(resourcespath + 'lock_green.png').scaled(14, 14),"")
window.sslButton.setVisible(False)
Expand Down

0 comments on commit 4f1fe8d

Please sign in to comment.