eepp: Added UIAnchor (Anchor or a).

UIRelativeLayout: Respect max width and height when using match_parent.
ecode: New icon WIP.
Fixed LSP TCP server connecting from the main thread (now connects async).
This commit is contained in:
Martín Lucas Golini
2023-03-20 16:33:35 -03:00
parent a231e4dd85
commit 854e148a36
21 changed files with 182 additions and 32 deletions

View File

@@ -70,7 +70,7 @@ void AppConfig::load( const std::string& confPath, std::string& keybindingsPath,
windowState.size.setHeight( iniState.getValueI( "window", "height", defWinSize.getHeight() ) );
windowState.maximized = iniState.getValueB( "window", "maximized", false );
windowState.pixelDensity = iniState.getValueF( "window", "pixeldensity" );
windowState.winIcon = ini.getValue( "window", "winicon", resPath + "icon/ee.png" );
windowState.winIcon = ini.getValue( "window", "winicon", resPath + "icon/ecode.png" );
windowState.panelPartition = iniState.getValue( "window", "panel_partition", "15%" );
windowState.displayIndex = iniState.getValueI( "window", "display_index", 0 );
windowState.position.x = iniState.getValueI( "window", "x", -1 );