summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2020-11-30 21:25:42 +0100
committerGitHub <noreply@github.com>2020-11-30 21:25:42 +0100
commit95667edb1465fd0c340a587df47d7e3522a65c7f (patch)
tree67a4e4dd07b4af0677869343f5a9a65d3ab82ea4 /resources
parentFix selection in input area by mouse (diff)
parentLint code (diff)
downloadnheko-95667edb1465fd0c340a587df47d7e3522a65c7f.tar.xz
Merge pull request #347 from kamathmanu/avatarFullViewSupport
Add support for viewing avatar images in full size
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Avatar.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml

index 4adff572..076e84c0 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml
@@ -49,6 +49,12 @@ Rectangle { } + MouseArea { + id: mouseArea + + anchors.fill: parent + onClicked: TimelineManager.openImageOverlay(TimelineManager.timeline.avatarUrl(userid), TimelineManager.timeline.data.id) + } } Rectangle {