1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

Terminal: Set original window title to "Terminal"

Don't rely on the shell setting the window title using escape sequences.
This commit is contained in:
Andreas Kling 2019-05-16 20:13:41 +02:00
parent 4e7e2950bc
commit f196e2fcda

View file

@ -89,6 +89,7 @@ int main(int argc, char** argv)
make_shell(ptm_fd);
auto* window = new GWindow;
window->set_title("Terminal");
window->set_background_color(Color::Black);
window->set_double_buffering_enabled(false);
window->set_should_exit_event_loop_on_close(true);