From 443bf2efbf8409e8716258ae8578b7b8ccb8bc06 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Fri, 24 Apr 2020 17:30:54 +0200 Subject: [PATCH] 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