privacy: hide when no active streams

This commit is contained in:
Damocles 2026-04-16 00:31:44 +02:00
parent f4776cb307
commit 816a35af9c
2 changed files with 2 additions and 4 deletions

View file

@ -108,9 +108,7 @@ PanelWindow {
spacing: M.Theme.groupSpacing spacing: M.Theme.groupSpacing
M.BarGroup { M.BarGroup {
M.Privacy { M.Privacy {}
visible: M.Modules.privacy.enable
}
M.Clock { M.Clock {
visible: M.Modules.clock.enable visible: M.Modules.clock.enable
} }

View file

@ -34,7 +34,7 @@ Row {
return false; return false;
} }
visible: root._videoCapture || root._audioIn visible: M.Modules.privacy.enable && (root._videoCapture || root._audioIn)
// Screenshare indicator // Screenshare indicator
Text { Text {