summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-07-08 16:55:44 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2023-07-08 16:55:44 -0400
commit8f87e5c91c96cc433963676224745a50bc1a60be (patch)
tree20e9357cc3ca9425fe544c5412b7068b94fe6c84 /resources
parentFocus to the message input bar after selecting a file (diff)
downloadnheko-8f87e5c91c96cc433963676224745a50bc1a60be.tar.xz
Fix the color on the insufficient powerlevel warning
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/MessageInput.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml
index e196b06d..a1d3ac7b 100644
--- a/resources/qml/MessageInput.qml
+++ b/resources/qml/MessageInput.qml
@@ -451,8 +451,9 @@ Rectangle {
             }
         }
     }
-    Text {
+    Label {
         anchors.centerIn: parent
+        color: palette.placeholderText
         text: qsTr("You don't have permission to send messages in this room")
         visible: room ? (!room.permissions.canSend(MtxEvent.TextMessage)) : false
     }