fix(StatusNavBarTabButton): fix popup menu positioning

This commit is contained in:
Pascal Precht 2021-06-11 15:37:59 +02:00 committed by Pascal Precht
parent 040da2a416
commit 705f140207
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ StatusIconTabButton {
if (popupMenuSlot.active) { if (popupMenuSlot.active) {
statusNavBarTabButton.highlighted = true statusNavBarTabButton.highlighted = true
let btnWidth = statusNavBarTabButton.width let btnWidth = statusNavBarTabButton.width
popupMenuSlot.item.popup(parent.x + btnWidth + 4, parent.y - 2) popupMenuSlot.item.popup(parent.x + btnWidth + 4, -2)
return return
} }
} }