mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
LibVT: Fix bug where terminal size got lost on font size change
When changing the font size, we now resize the terminal widget *before* setting the font. This ensures that we keep the same logical terminal size after the font change.
This commit is contained in:
parent
4cbdc747ab
commit
b4946eac6e
1 changed files with 1 additions and 1 deletions
|
@ -1260,8 +1260,8 @@ constexpr Gfx::Color TerminalWidget::terminal_color_to_rgb(VT::Color color) cons
|
|||
|
||||
void TerminalWidget::set_font_and_resize_to_fit(Gfx::Font const& font)
|
||||
{
|
||||
set_font(font);
|
||||
resize(widget_size_for_font(font));
|
||||
set_font(font);
|
||||
}
|
||||
|
||||
// Used for sending data that was not directly typed by the user.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue