mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 02:06:19 +00:00
fix(StatusMessageHeader): unbreak context menu (#16965)
- when clicking the underlined profile name; the prob was that `TapHandler` (unlike a `MouseArea`) is not a visual `Item` and hence can't be a parent for the context menu - small (unrelated) typo fix to unbreak GIF link previews... Fixes #16950
This commit is contained in:
parent
a4925eb23a
commit
0eb29c64e3
@ -78,7 +78,7 @@ Item {
|
||||
}
|
||||
TapHandler {
|
||||
enabled: root.displayNameClickable
|
||||
onSingleTapped: root.clicked(this)
|
||||
onSingleTapped: root.clicked(primaryDisplayName)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ Flow {
|
||||
|
||||
Repeater {
|
||||
id: tempRepeater
|
||||
visible: root.cankToUnfurlGifs
|
||||
visible: root.canAskToUnfurlGifs
|
||||
model: root.gifUnfurlingEnabled ? gifLinks : []
|
||||
|
||||
delegate: LinkPreviewGifDelegate {
|
||||
|
Loading…
x
Reference in New Issue
Block a user