Skip to content
Snippets Groups Projects
Verified Commit 1dc53a30 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix hovering aliases that only have text

parent 0d10ffc8
No related branches found
No related tags found
No related merge requests found
Pipeline #2455 failed
......@@ -4,8 +4,8 @@
// SPDX-License-Identifier: GPL-3.0-or-later
import "./ui"
import QtQuick 2.6
import QtQuick.Controls 2.3
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Window 2.15
import im.nheko 1.0
......@@ -25,13 +25,12 @@ Rectangle {
height: 48
radius: Settings.avatarCircles ? height / 2 : height / 8
color: Nheko.colors.alternateBase
Component.onCompleted: {
mouseArea.clicked.connect(clicked);
}
Label {
id: label
enabled: false
anchors.fill: parent
text: TimelineManager.escapeEmoji(displayName ? String.fromCodePoint(displayName.codePointAt(0)) : "")
textFormat: Text.RichText
......@@ -73,18 +72,6 @@ Rectangle {
sourceSize.height: avatar.height * Screen.devicePixelRatio
source: avatar.url ? (avatar.url + "?radius=" + (Settings.avatarCircles ? 100 : 25) + ((avatar.crop) ? "" : "&scale")) : ""
MouseArea {
id: mouseArea
anchors.fill: parent
Ripple {
rippleTarget: mouseArea
color: Qt.rgba(Nheko.colors.alternateBase.r, Nheko.colors.alternateBase.g, Nheko.colors.alternateBase.b, 0.5)
}
}
}
Rectangle {
......@@ -125,4 +112,10 @@ Rectangle {
cursorShape: Qt.PointingHandCursor
}
TapHandler {
id: mouseArea
onSingleTapped: avatar.clicked(eventPoint)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment