Audio: do not show the indicator in sliders

This wasn't visible in the paste, something is changed in efl...
This commit is contained in:
Davide Andreoli 2020-04-24 17:30:54 +02:00
parent 146d656a1e
commit 443bf2efbf
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
build/
.idea/

View File

@ -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