From ec1471d7415a7f5282e7474c0e125fe5e8c733b5 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Fri, 21 May 2021 09:07:28 -0700 Subject: [PATCH] Fix for #2667 --- views/default.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default.handlebars b/views/default.handlebars index 85c3771d..14fea2c4 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -7606,7 +7606,7 @@ QV('DeskChatButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); QV('DeskNotifyButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (currentNode.agent) && online); QV('DeskLockButton', ((rights & 16384) != 0) && (browserfullscreen == false) && (currentNode.agent) && (currentNode.agent.id < 5) && (inputAllowed) && (currentNode.agent) && (deskState == 3)); - QV('DeskToolsButton', (deskState == 3) && (currentNode.agent) && online); + QV('DeskToolsButton', (currentNode.agent) && online); QE('DeskToolsButton', inputAllowed); QV('DeskOpenWebButton', (browserfullscreen == false) && (inputAllowed) && (currentNode.agent) && online); QV('DeskBackgroundButton', inputAllowed && (deskState == 3) && (desktop.contype == 1) && (currentNode.agent) && (currentNode.agent.id != 11) && (currentNode.agent.id != 16) && online);