1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

WindowServer: Oops, forgot to plumb through the base size for incresize.

This commit is contained in:
Andreas Kling 2019-02-21 10:11:12 +01:00
parent 6084cd0c56
commit 16cd4585cd
3 changed files with 3 additions and 2 deletions

View file

@ -798,5 +798,5 @@ void Terminal::resize_event(GResizeEvent& event)
void Terminal::apply_size_increments_to_window(GWindow& window)
{
window.set_size_increment({ font().glyph_width(), m_line_height });
window.set_base_size({ m_inset, m_inset });
window.set_base_size({ m_inset * 2, m_inset * 2});
}