From b0a69468d22cfc686c448db4b9a426517eee39df Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Tue, 13 Dec 2016 15:16:18 -0800 Subject: [PATCH] Don't show admin columns if you can't kick. --- interface/resources/qml/hifi/Pal.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index de654e3303..9880e83219 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -139,11 +139,13 @@ Rectangle { width: actionWidth } TableViewColumn { + visible: Users.canKick; role: "mute"; title: "Mute"; width: actionWidth } TableViewColumn { + visible: Users.canKick; role: "kick"; title: "Ban" width: actionWidth