diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-07-08 16:55:44 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-07-08 16:55:44 -0400 |
commit | 8f87e5c91c96cc433963676224745a50bc1a60be (patch) | |
tree | 20e9357cc3ca9425fe544c5412b7068b94fe6c84 /resources | |
parent | Focus to the message input bar after selecting a file (diff) | |
download | nheko-8f87e5c91c96cc433963676224745a50bc1a60be.tar.xz |
Fix the color on the insufficient powerlevel warning
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/MessageInput.qml | 3 |
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 } |