fix(StatusEmojiPopup): fix emoji popup "y" position

it was off by `Style.current.halfPadding`
This commit is contained in:
Lukáš Tinkl 2022-09-01 11:29:07 +02:00 committed by Lukáš Tinkl
parent 51f6b9ba2b
commit 2606de5ccb
1 changed files with 1 additions and 1 deletions

View File

@ -1251,7 +1251,7 @@ Rectangle {
control.emojiPopupOpened = true
togglePopup(emojiPopup, emojiBtn)
emojiPopup.x = Global.applicationWindow.width - emojiPopup.width - Style.current.halfPadding
emojiPopup.y = Global.applicationWindow.height - emojiPopup.height - control.height
emojiPopup.y = Global.applicationWindow.height - emojiPopup.height - control.height - Style.current.halfPadding
}
}