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

Terminal+LibVT: Use LibConfig instead of Core::ConfigFile

This commit is contained in:
Andreas Kling 2021-08-25 19:39:57 +02:00
parent 39d9373bca
commit 82d8cd2b87
5 changed files with 21 additions and 35 deletions

View file

@ -162,8 +162,7 @@ TerminalWrapper::TerminalWrapper(bool user_spawned)
{
set_layout<GUI::VerticalBoxLayout>();
RefPtr<Core::ConfigFile> config = Core::ConfigFile::open_for_app("Terminal");
m_terminal_widget = add<VT::TerminalWidget>(-1, false, config);
m_terminal_widget = add<VT::TerminalWidget>(-1, false);
if (user_spawned)
run_command("Shell");