mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
Fix a few alignment issues in the hover menu
This commit is contained in:
parent
64a939481a
commit
fcfcf5573b
1 changed files with 2 additions and 3 deletions
|
@ -77,12 +77,11 @@ Item {
|
||||||
radius: padding
|
radius: padding
|
||||||
}
|
}
|
||||||
|
|
||||||
contentItem: Row {
|
contentItem: RowLayout {
|
||||||
id: row
|
id: row
|
||||||
|
|
||||||
property var model
|
property var model
|
||||||
|
|
||||||
anchors.centerIn: parent
|
|
||||||
spacing: messageActions.padding
|
spacing: messageActions.padding
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
|
@ -93,7 +92,7 @@ Item {
|
||||||
|
|
||||||
visible: chat.model ? chat.model.permissions.canSend(MtxEvent.Reaction) : false
|
visible: chat.model ? chat.model.permissions.canSend(MtxEvent.Reaction) : false
|
||||||
|
|
||||||
height: fontMetrics.height
|
Layout.preferredHeight: fontMetrics.height
|
||||||
font.family: Settings.emojiFont
|
font.family: Settings.emojiFont
|
||||||
|
|
||||||
text: modelData
|
text: modelData
|
||||||
|
|
Loading…
Reference in a new issue