diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index d7fb727ae4af6895c421b1c6c8ec0b483fbdc58e..181b64ffdc7601f77798499539784880f075509a 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