summaryrefslogtreecommitdiffstats
path: root/resources/qml/ReplyPopup.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-02-02 18:54:45 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-02-09 20:22:53 +0100
commit6e2ae1d81204cffc28d2bf5e3e1cda3f4136c0f4 (patch)
tree766f399d2a849dcc4742fcfb8923e96d6390c934 /resources/qml/ReplyPopup.qml
parent9b7d33e847b02031fdc153716614f125992b3734 (diff)
Add edit shortcuts and fix some focus stuff
Diffstat (limited to 'resources/qml/ReplyPopup.qml')
-rw-r--r--resources/qml/ReplyPopup.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/ReplyPopup.qml b/resources/qml/ReplyPopup.qml
index 85b64114..9e97d7aa 100644
--- a/resources/qml/ReplyPopup.qml
+++ b/resources/qml/ReplyPopup.qml
@@ -18,8 +18,8 @@ Rectangle {
Reply {
id: replyPreview
- visible: room && room.reply
+ visible: room && room.reply
anchors.left: parent.left
anchors.leftMargin: 2 * 22 + 3 * 16
anchors.right: closeReplyButton.left
@@ -32,8 +32,8 @@ Rectangle {
ImageButton {
id: closeReplyButton
- visible: room && room.reply
+ visible: room && room.reply
anchors.right: parent.right
anchors.rightMargin: 16
anchors.top: replyPreview.top
@@ -48,8 +48,8 @@ Rectangle {
Button {
id: closeEditButton
- visible: room && room.edit
+ visible: room && room.edit
anchors.left: parent.left
anchors.rightMargin: 16
anchors.topMargin: 10