From 37804909b5214bbe58e13e3715384f9ad8d4254a Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 14 Nov 2025 17:17:46 +0100 Subject: [PATCH] Connect4: shorter text --- .../apps/com.micropythonos.connect4/assets/connect4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/apps/com.micropythonos.connect4/assets/connect4.py b/internal_filesystem/apps/com.micropythonos.connect4/assets/connect4.py index a410db44..3f8329f8 100644 --- a/internal_filesystem/apps/com.micropythonos.connect4/assets/connect4.py +++ b/internal_filesystem/apps/com.micropythonos.connect4/assets/connect4.py @@ -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: