From 6135411ea8b09f9611ff9bef17c79faae7ea565b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 15 Aug 2022 14:38:48 +0200 Subject: [PATCH] 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. :^) --- Userland/Applications/Terminal/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Applications/Terminal/main.cpp b/Userland/Applications/Terminal/main.cpp index c309f8d9d7..7e15a469fd 100644 --- a/Userland/Applications/Terminal/main.cpp +++ b/Userland/Applications/Terminal/main.cpp @@ -292,7 +292,6 @@ ErrorOr 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(ptm_fd, true));