Skip to content

Commit

Permalink
IME: Fix ime popup coordinates and artifacts (#5373)
Browse files Browse the repository at this point in the history
* ime: fix incorrect popup coordinate

* ime: fix popup artifacts
  • Loading branch information
sungyoonc authored Apr 1, 2024
1 parent 108163f commit db15061
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/managers/input/InputMethodPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ void CInputPopup::damageEntire() {
return;
}

Vector2D pos = OWNER->getSurfaceBoxGlobal().value_or(CBox{0, 0, 0, 0}).pos();
CBox global = lastBoxLocal.copy().translate(pos);

g_pHyprRenderer->damageBox(&global);
Vector2D pos = OWNER->getSurfaceBoxGlobal().value_or(CBox{0, 0, 0, 0}).pos() + lastBoxLocal.pos();
g_pHyprRenderer->damageBox(pos.x, pos.y, surface.wlr()->current.width, surface.wlr()->current.height);
}

void CInputPopup::damageSurface() {
Expand Down Expand Up @@ -127,7 +125,9 @@ void CInputPopup::updateBox() {
CMonitor* pMonitor = g_pCompositor->getMonitorFromVector(parentBox.middle());

if (cursorBoxLocal.y + parentBox.y + surface.wlr()->current.height + cursorBoxLocal.height > pMonitor->vecPosition.y + pMonitor->vecSize.y)
cursorBoxLocal.y -= surface.wlr()->current.height + cursorBoxLocal.height;
cursorBoxLocal.y -= surface.wlr()->current.height;
else
cursorBoxLocal.y += cursorBoxLocal.height;

if (cursorBoxLocal.x + parentBox.x + surface.wlr()->current.width > pMonitor->vecPosition.x + pMonitor->vecSize.x)
cursorBoxLocal.x -= (cursorBoxLocal.x + parentBox.x + surface.wlr()->current.width) - (pMonitor->vecPosition.x + pMonitor->vecSize.x);
Expand Down

0 comments on commit db15061

Please sign in to comment.