hyprerror: add padding & adjust for scale when reserving area (#13158)
This commit is contained in:
parent
e123fd3e66
commit
cd7bdc7a43
1 changed files with 2 additions and 1 deletions
|
|
@ -168,7 +168,8 @@ void CHyprError::createQueued() {
|
|||
m->m_reservedArea.resetType(Desktop::RESERVED_DYNAMIC_TYPE_ERROR_BAR);
|
||||
}
|
||||
|
||||
PMONITOR->m_reservedArea.addType(Desktop::RESERVED_DYNAMIC_TYPE_ERROR_BAR, Vector2D{0.0, *BAR_POSITION == 0 ? HEIGHT : 0.0}, Vector2D{0.0, *BAR_POSITION != 0 ? HEIGHT : 0.0});
|
||||
const auto RESERVED = (HEIGHT + PAD) / SCALE;
|
||||
PMONITOR->m_reservedArea.addType(Desktop::RESERVED_DYNAMIC_TYPE_ERROR_BAR, Vector2D{0.0, TOPBAR ? RESERVED : 0.0}, Vector2D{0.0, !TOPBAR ? RESERVED : 0.0});
|
||||
|
||||
for (const auto& m : g_pCompositor->m_monitors) {
|
||||
g_pHyprRenderer->arrangeLayersForMonitor(m->m_id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue