Add goto button to hover menu when searching

fixes #1457
This commit is contained in:
Nicolas Werner 2023-05-30 14:21:44 +02:00
parent 198e1fc6b9
commit a1fed44b50
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
3 changed files with 20 additions and 9 deletions

View file

@ -0,0 +1 @@
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.78 2.22a.75.75 0 1 0-1.06 1.06L19.44 5h-6.19a2.75 2.75 0 0 0-2.75 2.75v9.497c0 .69-.56 1.25-1.25 1.25H7.958a3 3 0 1 0-.128 1.5h1.42a2.75 2.75 0 0 0 2.75-2.75V7.75c0-.69.56-1.25 1.25-1.25h6.19l-1.72 1.72a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3ZM3.5 19a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z" fill="#212121"/></svg>

After

Width:  |  Height:  |  Size: 431 B

View file

@ -124,8 +124,6 @@ Item {
} }
ImageButton { ImageButton {
id: editButton
visible: !!row.model && row.model.isEditable visible: !!row.model && row.model.isEditable
buttonTextColor: Nheko.colors.buttonText buttonTextColor: Nheko.colors.buttonText
width: 16 width: 16
@ -157,8 +155,6 @@ Item {
} }
ImageButton { ImageButton {
id: threadButton
visible: room ? room.permissions.canSend(MtxEvent.TextMessage) : false visible: room ? room.permissions.canSend(MtxEvent.TextMessage) : false
width: 16 width: 16
hoverEnabled: true hoverEnabled: true
@ -170,8 +166,6 @@ Item {
} }
ImageButton { ImageButton {
id: replyButton
visible: room ? room.permissions.canSend(MtxEvent.TextMessage) : false visible: room ? room.permissions.canSend(MtxEvent.TextMessage) : false
width: 16 width: 16
hoverEnabled: true hoverEnabled: true
@ -182,6 +176,21 @@ Item {
onClicked: room.reply = row.model.eventId onClicked: room.reply = row.model.eventId
} }
ImageButton {
visible: !!row.model && filteredTimeline.filterByContent
buttonTextColor: Nheko.colors.buttonText
width: 16
hoverEnabled: true
image: ":/icons/icons/ui/go-to.svg"
ToolTip.visible: hovered
ToolTip.delay: Nheko.tooltipDelay
ToolTip.text: qsTr("Go to message")
onClicked: {
topBar.searchString = "";
room.showEvent(row.model.eventId);
}
}
ImageButton { ImageButton {
id: optionsButton id: optionsButton
@ -648,12 +657,12 @@ Item {
} }
Platform.MenuItem { Platform.MenuItem {
visible: topBar.searchString !== "" visible: filteredTimeline.filterByContent
enabled: visible enabled: visible
text: qsTr("Go to eve&nt") text: qsTr("Go to &message")
onTriggered: function() { onTriggered: function() {
room.showEvent(messageContextMenu.eventId);
topBar.searchString = ""; topBar.searchString = "";
room.showEvent(messageContextMenu.eventId);
} }
} }

View file

@ -18,6 +18,7 @@
<file>icons/ui/edit.svg</file> <file>icons/ui/edit.svg</file>
<file>icons/ui/end-call.svg</file> <file>icons/ui/end-call.svg</file>
<file>icons/ui/expanded.svg</file> <file>icons/ui/expanded.svg</file>
<file>icons/ui/go-to.svg</file>
<file>icons/ui/image-failed.svg</file> <file>icons/ui/image-failed.svg</file>
<file>icons/ui/image.svg</file> <file>icons/ui/image.svg</file>
<file>icons/ui/lowprio.svg</file> <file>icons/ui/lowprio.svg</file>