fix(StatusEmojiPopup): fix emoji popup "y" position
it was off by `Style.current.halfPadding`
This commit is contained in:
parent
51f6b9ba2b
commit
2606de5ccb
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue