UITreeView performance improvement (and fix).

This commit is contained in:
Martín Lucas Golini
2020-07-24 01:28:01 -03:00
parent 54d520dba6
commit 31d2d3041b
2 changed files with 29 additions and 20 deletions

View File

@@ -248,7 +248,7 @@ void App::loadConfig() {
std::string recent = mIniState.getValue( "files", "recentfiles", "" );
mRecentFiles = String::split( recent, ';' );
mInitColorScheme = mConfig.editor.colorScheme =
mIni.getValue( "editor", "colorscheme", "lite" );
mIni.getValue( "editor", "colorscheme", "eepp" );
mConfig.editor.fontSize = mIni.getValue( "editor", "font_size", "11dp" );
mConfig.window.size.setWidth(
mIniState.getValueI( "window", "width", mDisplayDPI > 105 ? 1920 : 1280 ) );