This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 0596d8918771cd8bd3c24166409988199f9a5b68
Author: MaxPerl <[email protected]>
AuthorDate: Thu Jul 9 20:23:41 2026 +0000
When clicking stop button, always show Play Button and hide Pause button
---
data/elementary/themes/edc/elm/player.edc | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/data/elementary/themes/edc/elm/player.edc b/data/elementary/themes/edc/elm/player.edc
index c92c4f2a59..aa7fdd0fdb 100644
--- a/data/elementary/themes/edc/elm/player.edc
+++ b/data/elementary/themes/edc/elm/player.edc
@@ -416,6 +416,19 @@ group { name: "elm/player/base/default";
action: STATE_SET "default" 0.0;
target: "elm.swallow.media_player.play";
}
+ program {
+ name: "show_play_button";
+ signal: "elm,button,stop";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "elm.swallow.media_player.play";
+ after: "hide_pause_button";
+ }
+ program {
+ name: "hide_pause_button";
+ action: STATE_SET "hidden" 0.0;
+ target: "elm.swallow.media_player.pause";
+ }
program {
signal: "load"; source: "";
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.