summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-04 00:38:59 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-04 00:38:59 +0200
commitb205819ba6ab1f72746e5b556809b597e77e2503 (patch)
treeb162aec968ccc9791160c70ad5e8ad08ecb6bad1 /resources/qml
parentFix raw message dialog (diff)
downloadnheko-b205819ba6ab1f72746e5b556809b597e77e2503.tar.xz
Swap thread and edit button
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TimelineRow.qml28
1 files changed, 14 insertions, 14 deletions
diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index d7fb727a..181b64ff 100644
--- a/resources/qml/TimelineRow.qml
+++ b/resources/qml/TimelineRow.qml
@@ -230,20 +230,6 @@ AbstractButton {
                     anchors.verticalCenter: ts.verticalCenter
                 }
 
-                ImageButton {
-                    visible: threadId
-                    Layout.alignment: Qt.AlignRight | Qt.AlignTop
-                    height: parent.iconSize
-                    width: parent.iconSize
-                    image: ":/icons/icons/ui/thread.svg"
-                    buttonTextColor: TimelineManager.userColor(threadId, Nheko.colors.base)
-                    ToolTip.visible: hovered
-                    ToolTip.delay: Nheko.tooltipDelay
-                    ToolTip.text: qsTr("Part of a thread")
-                    anchors.verticalCenter: ts.verticalCenter
-                    onClicked: room.thread = threadId
-                }
-
                 Image {
                     visible: isEdited || eventId == room.edit
                     Layout.alignment: Qt.AlignRight | Qt.AlignTop
@@ -263,6 +249,20 @@ AbstractButton {
 
                 }
 
+                ImageButton {
+                    visible: threadId
+                    Layout.alignment: Qt.AlignRight | Qt.AlignTop
+                    height: parent.iconSize
+                    width: parent.iconSize
+                    image: ":/icons/icons/ui/thread.svg"
+                    buttonTextColor: TimelineManager.userColor(threadId, Nheko.colors.base)
+                    ToolTip.visible: hovered
+                    ToolTip.delay: Nheko.tooltipDelay
+                    ToolTip.text: qsTr("Part of a thread")
+                    anchors.verticalCenter: ts.verticalCenter
+                    onClicked: room.thread = threadId
+                }
+
                 EncryptionIndicator {
                     visible: room.isEncrypted
                     encrypted: isEncrypted