You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
948 B
31 lines
948 B
From 4e555e0efeb4b31918e199d29bee99b2a4ed1c8e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
|
Date: Wed, 11 May 2022 02:34:21 +0200
|
|
Subject: [PATCH] status/volume: Hide sliders initially
|
|
|
|
We update the visibility on state or stream changes, but those
|
|
changes may never happen if pipewire-pulse/pulseaudio isn't
|
|
available (for example when running as root).
|
|
|
|
Hiding the sliders is preferable in that case to showing non-working
|
|
controls.
|
|
---
|
|
js/ui/status/volume.js | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/js/ui/status/volume.js b/js/ui/status/volume.js
|
|
index d555b426e..ab5065683 100644
|
|
--- a/js/ui/status/volume.js
|
|
+++ b/js/ui/status/volume.js
|
|
@@ -30,6 +30,7 @@ var StreamSlider = class {
|
|
this._control = control;
|
|
|
|
this.item = new PopupMenu.PopupBaseMenuItem({ activate: false });
|
|
+ this.item.actor.hide();
|
|
|
|
this._slider = new Slider.Slider(0);
|
|
|
|
--
|
|
2.35.1
|
|
|