From 4e868e5780c02281f99558bd5db5f67ba770262d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Fri, 29 Sep 2023 16:30:41 -0300 Subject: [PATCH] Fix. --- src/tools/ecode/appconfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/ecode/appconfig.cpp b/src/tools/ecode/appconfig.cpp index eeb635dbd..a6e816ced 100644 --- a/src/tools/ecode/appconfig.cpp +++ b/src/tools/ecode/appconfig.cpp @@ -151,7 +151,7 @@ void AppConfig::load( const std::string& confPath, std::string& keybindingsPath, term.colorScheme = ini.getValue( "terminal", "colorscheme", "eterm" ); term.newTerminalOrientation = NewTerminalOrientation::fromString( ini.getValue( "terminal", "new_terminal_orientation", "vertical" ) ); - term.shell = ini.getValueI( "terminal", "scrollback", 10000 ); + term.scrollback = ini.getValueI( "terminal", "scrollback", 10000 ); workspace.restoreLastSession = ini.getValueB( "workspace", "restore_last_session", false ); workspace.checkForUpdatesAtStartup =