diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-03-23 01:33:19 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-03-23 01:33:19 +0100 |
commit | a23e2ba85408b140308500af81d213d10b926fe1 (patch) | |
tree | eba8665cd922121eb47ae5b0acfe477605b86867 /resources/qml/MessageView.qml | |
parent | Properly enable hovering on message action menu (diff) | |
download | nheko-a23e2ba85408b140308500af81d213d10b926fe1.tar.xz |
Make overlap of actionMenu a bit smaller again
Diffstat (limited to 'resources/qml/MessageView.qml')
-rw-r--r-- | resources/qml/MessageView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index e5dd91b9..90ba4787 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -68,7 +68,7 @@ Item { hoverEnabled: true visible: Settings.buttonsInTimeline && !!attached && (attached.hovered || hovered) x: attached ? attachedPos.x : 0 - y: attached ? attachedPos.y + Nheko.paddingMedium : 0 + y: attached ? attachedPos.y + Nheko.paddingSmall : 0 z: 10 background: Rectangle { |