From 3bf9d898d051c3ce030f10e69bb76e1477382c70 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 28 Oct 2025 17:32:18 +0100 Subject: [PATCH] AudioPlayer: disable playing progress --- .../com.micropythonos.musicplayer/assets/audio_player.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal_filesystem/apps/com.micropythonos.musicplayer/assets/audio_player.py b/internal_filesystem/apps/com.micropythonos.musicplayer/assets/audio_player.py index 08b7195a..2a377d40 100644 --- a/internal_filesystem/apps/com.micropythonos.musicplayer/assets/audio_player.py +++ b/internal_filesystem/apps/com.micropythonos.musicplayer/assets/audio_player.py @@ -131,8 +131,9 @@ class AudioPlayer: total = 0 while total < data_size: - if total % 51 == 0: - print('.', end='') + # Progress: + #if total % 51 == 0: + # print('.', end='') if not AudioPlayer._keep_running: print("_keep_running = False, stopping...") break