davemds pushed a commit to branch master.

http://git.enlightenment.org/enlightenment/modules/edgar.git/commit/?id=443bf2efbf8409e8716258ae8578b7b8ccb8bc06

commit 443bf2efbf8409e8716258ae8578b7b8ccb8bc06
Author: Dave Andreoli <[email protected]>
Date:   Fri Apr 24 17:30:54 2020 +0200

    Audio: do not show the indicator in sliders
    
    This wasn't visible in the paste, something is changed in efl...
---
 .gitignore                | 1 +
 gadgets/audio/__init__.py | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 567609b..a83bb87 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 build/
+.idea/
diff --git a/gadgets/audio/__init__.py b/gadgets/audio/__init__.py
index ca65905..ca034c5 100644
--- a/gadgets/audio/__init__.py
+++ b/gadgets/audio/__init__.py
@@ -201,7 +201,8 @@ class Gadget(e.Gadget):
 
     def popup_volume_add(self, popup, channel):
         sl = elm.Slider(popup, text=channel.name, min_max=(0, 65500),
-                        span_size=150, size_hint_expand=EXPAND_HORIZ,
+                        span_size=150, indicator_show=False,
+                        size_hint_expand=EXPAND_HORIZ,
                         size_hint_fill=FILL_HORIZ)
         sl.value = channel.volume
         sl.disabled = True if channel.muted else False

-- 


Reply via email to