privacy: hide when no active streams
This commit is contained in:
parent
f4776cb307
commit
816a35af9c
2 changed files with 2 additions and 4 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue