Connect4: shorter text

This commit is contained in:
Thomas Farstrike
2025-11-14 17:17:46 +01:00
parent ab7183a913
commit 37804909b5
@@ -229,7 +229,7 @@ class Connect4(Activity):
self.current_player = self.COMPUTER if player == self.PLAYER else self.PLAYER
if self.current_player == self.COMPUTER:
self.status_label.set_text("Computer thinking...")
self.status_label.set_text("Thinking...")
# Delay computer move slightly for better UX
lv.timer_create(lambda t: self.computer_move(), 500, None).set_repeat_count(1)
else: