mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 10:25:59 +01:00
hyprerror: fix height calc with bottom bar (#8043)
This commit is contained in:
parent
223dcc8bac
commit
3d28879c26
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ void CHyprError::createQueued() {
|
||||||
}
|
}
|
||||||
m_szQueued = "";
|
m_szQueued = "";
|
||||||
|
|
||||||
m_fLastHeight = yoffset + PAD + 1;
|
m_fLastHeight = yoffset + PAD + 1 - (TOPBAR ? 0 : Y - PAD);
|
||||||
|
|
||||||
pango_font_description_free(pangoFD);
|
pango_font_description_free(pangoFD);
|
||||||
g_object_unref(layoutText);
|
g_object_unref(layoutText);
|
||||||
|
|
Loading…
Reference in a new issue