Add tooltips to go up/go down buttons in the view

This commit is contained in:
Nate Graham
2020-11-23 10:28:29 -07:00
parent 0b75b9f488
commit 72f62b01eb

View File

@@ -335,6 +335,10 @@ Kirigami.ScrollablePage {
}
icon.name: currentRoom && currentRoom.hasUnreadMessages ? "go-up" : "go-down"
}
QQC2.ToolTip {
text: currentRoom && currentRoom.hasUnreadMessages ? i18n("Jump to first unread message") : i18n("Jump to latest message")
}
}
header: RowLayout {