Skip to content

Commit

Permalink
Use correct 'set user as ready' message
Browse files Browse the repository at this point in the history
  • Loading branch information
Et0h authored Nov 3, 2024
1 parent 4f1fe8d commit 0e8cefa
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 @@ -825,7 +825,7 @@ def openRoomMenu(self, position):
addSetUserAsReadyText = getMessage("setasnotready-menu-label").format(shortUsername)
menu.addAction(QtGui.QPixmap(resourcespath + "cross.png"), addSetUserAsReadyText, lambda: self._syncplayClient.setOthersReadiness(username, False))
else:
addSetUserAsNotReadyText = getMessage("setasnotready-menu-label").format(shortUsername)
addSetUserAsNotReadyText = getMessage("setasready-menu-label").format(shortUsername)
menu.addAction(QtGui.QPixmap(resourcespath + "tick.png"), addSetUserAsNotReadyText, lambda: self._syncplayClient.setOthersReadiness(username, True))
menu.exec_(self.listTreeView.viewport().mapToGlobal(position))

Expand Down

0 comments on commit 0e8cefa

Please sign in to comment.