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
Notes: sideshowbarker 2024-07-18 05:17:15 +09:00
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");