summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2020-01-28 19:20:39 -0500
committerJoseph Donofry <joedonofry@gmail.com>2020-01-28 19:20:39 -0500
commitd205952fc8899d4a4ca8137f0e63da45fd8af1b4 (patch)
tree32b4f6de9be8892604d4d0b5c67abd5e10d5ecb7 /resources/qml/TimelineView.qml
parentSimplify reply popup logic (diff)
downloadnheko-d205952fc8899d4a4ca8137f0e63da45fd8af1b4.tar.xz
Change tooltip palette settings for QML
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index a5746703..35d41ea1 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -192,7 +192,7 @@ Item {
 		Rectangle {
 			id: chatFooter
 
-			height: Math.max(16, aaaaa.height)
+			height: Math.max(16, footerContent.height)
 			anchors.left: parent.left
 			anchors.right: parent.right
 			anchors.bottom: parent.bottom
@@ -201,7 +201,7 @@ Item {
 			color: colors.window
 
 			Column {
-				id: aaaaa
+				id: footerContent
 				anchors.left: parent.left
 				anchors.right: parent.right
 
@@ -235,6 +235,7 @@ Item {
 						anchors.left: parent.left
 						anchors.leftMargin: 10
 						anchors.right: closeReplyButton.left
+						anchors.rightMargin: 20
 						anchors.bottom: parent.bottom
 
 						modelData: chat.model ? chat.model.getDump(timelineManager.replyingEvent) : {}
@@ -245,8 +246,9 @@ Item {
 						id: closeReplyButton
 
 						anchors.right: parent.right
-						anchors.rightMargin: 10
+						anchors.rightMargin: 15
 						anchors.top: replyPreview.top
+						hoverEnabled: true
 
 						image: ":/icons/icons/ui/remove-symbol.png"
 						ToolTip {