Fixed client icon
This commit is contained in:
parent
d01952fca8
commit
7a9e4b604b
1 changed files with 3 additions and 1 deletions
|
@ -303,10 +303,12 @@ class ClientEntry {
|
|||
let clicon: string = "";
|
||||
if(this.properties.client_away) {
|
||||
icon = "client-away";
|
||||
} else if(this.properties.client_output_muted) {
|
||||
} else if(!this.properties.client_output_hardware) {
|
||||
icon = "client-hardware_output_muted";
|
||||
} else if(!this.properties.client_input_hardware) {
|
||||
icon = "client-hardware_input_muted";
|
||||
} else if(this.properties.client_output_muted) {
|
||||
icon = "client-output_muted";
|
||||
} else if(this.properties.client_input_muted) {
|
||||
icon = "client-input_muted";
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue