mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
Terminal: Enable double-buffering for the terminal widget
This was disabled originally because of performance paranoia, but it resulted in flickering sometimes, so let's err on the side of nicer looking terminals. :^)
This commit is contained in:
parent
e7d2696a56
commit
6135411ea8
1 changed files with 0 additions and 1 deletions
|
@ -292,7 +292,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
|
||||
auto window = TRY(GUI::Window::try_create());
|
||||
window->set_title("Terminal");
|
||||
window->set_double_buffering_enabled(false);
|
||||
window->set_obey_widget_min_size(false);
|
||||
|
||||
auto terminal = TRY(window->try_set_main_widget<VT::TerminalWidget>(ptm_fd, true));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue