This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch main
in repository eradio.
View the commit online.
commit 9887b3a9deaaca8def3e75cc34befb247596ea65
Author: politebot <[email protected]>
AuthorDate: Wed Oct 15 06:53:11 2025 -0500
Clear the status display when clicking stop
---
src/radio_player.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/radio_player.c b/src/radio_player.c
index 97f226d..dd4110a 100644
--- a/src/radio_player.c
+++ b/src/radio_player.c
@@ -47,6 +47,8 @@ radio_player_stop(AppData *ad)
ad->playing = EINA_FALSE;
if (ad->play_pause_item)
elm_toolbar_item_icon_set(ad->play_pause_item, "media-playback-start");
+ if (ad->statusbar)
+ elm_object_text_set(ad->statusbar, " ");
}
void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.