From 7a9e4b604bca140ce5afd585c163ed474bcb439f Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Sun, 12 Aug 2018 21:54:05 +0200 Subject: [PATCH] Fixed client icon --- js/ui/client.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/ui/client.ts b/js/ui/client.ts index 9b203080..b1e0cb9f 100644 --- a/js/ui/client.ts +++ b/js/ui/client.ts @@ -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 {