1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index cc615fd3..f0e71c60 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -155,12 +155,12 @@ Item {
MessageInputWarning {
text: qsTr("You are about to notify the whole room")
- isVisible: (room && room.permissions.canPingRoom() && room.input.containsAtRoom)
+ visible: (room && room.permissions.canPingRoom() && room.input.containsAtRoom)
}
MessageInputWarning {
text: qsTr("The command /%1 is not recognized and will be sent as part of your message").arg(room ? room.input.currentCommand : "")
- isVisible: room ? room.input.containsInvalidCommand : false
+ visible: room ? room.input.containsInvalidCommand : false
}
ReplyPopup {
|