fix flyouts on multiple monitors again?

This commit is contained in:
Damocles 2026-04-12 15:36:11 +02:00
parent 75a94628ad
commit c59a2c622d
6 changed files with 9 additions and 7 deletions

View file

@ -10,7 +10,7 @@ Row {
onHoveredChanged: {
if (hovered && root.tooltip !== "") {
M.FlyoutState.text = root.tooltip;
M.FlyoutState.itemX = root.mapToGlobal(root.width / 2, 0).x;
M.FlyoutState.itemX = root.mapToGlobal(root.width / 2, 0).x - (QsWindow.window?.screen?.x ?? 0);
M.FlyoutState.screen = QsWindow.window?.screen ?? null;
M.FlyoutState.visible = true;
} else if (!hovered && root.tooltip !== "") {