summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-02-27 18:33:27 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-02-28 20:10:25 -0500
commitc27407bfab9160266162864f71f2bca27b87a9e9 (patch)
tree7354995db75ca47451575204272911368f320cb4 /resources/qml
parentSimplify code a bit (diff)
downloadnheko-c27407bfab9160266162864f71f2bca27b87a9e9.tar.xz
Don't show timeline behind warnings
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/MessageInputWarning.qml10
-rw-r--r--resources/qml/TimelineView.qml4
2 files changed, 7 insertions, 7 deletions
diff --git a/resources/qml/MessageInputWarning.qml b/resources/qml/MessageInputWarning.qml

index c2db2daa..af65ebc1 100644 --- a/resources/qml/MessageInputWarning.qml +++ b/resources/qml/MessageInputWarning.qml
@@ -7,27 +7,27 @@ import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 import im.nheko 1.0 -Item { +Rectangle { id: warningRoot required property string text - required property bool isVisible - implicitHeight: isVisible ? warningDisplay.implicitHeight + 2 * Nheko.paddingSmall : 0 + implicitHeight: visible ? warningDisplay.implicitHeight + 4 * Nheko.paddingSmall : 0 height: implicitHeight Layout.fillWidth: true - Layout.margins: isVisible ? Nheko.paddingSmall : 0 + color: Nheko.colors.window // required to hide the timeline behind this warning Rectangle { id: warningRect - visible: warningRoot.isVisible + visible: warningRoot.visible // TODO: Qt.alpha() would make more sense but it wasn't working... color: Qt.rgba(Nheko.theme.error.r, Nheko.theme.error.g, Nheko.theme.error.b, 0.3) border.width: 1 border.color: Nheko.theme.error radius: 3 anchors.fill: parent + anchors.margins: visible ? Nheko.paddingSmall : 0 z: 3 Label { 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 {