Skip to content

Commit

Permalink
hyprerror: fix height calc with bottom bar (#8043)
Browse files Browse the repository at this point in the history
  • Loading branch information
JManch authored Oct 9, 2024
1 parent 223dcc8 commit 3d28879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyprerror/HyprError.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void CHyprError::createQueued() {
}
m_szQueued = "";

m_fLastHeight = yoffset + PAD + 1;
m_fLastHeight = yoffset + PAD + 1 - (TOPBAR ? 0 : Y - PAD);

pango_font_description_free(pangoFD);
g_object_unref(layoutText);
Expand Down

0 comments on commit 3d28879

Please sign in to comment.