Added support for maximizing the current tab widget (commands: maximize-tab-widget and restore-maximized-tab-widget), it can also be triggered right clicking a tab -> Maximize Tab Widget (SpartanJ/ecode#651).

Added UINodeLink, this is a very simple node that lets you set a link to another node.
Improved focus control in the status bar panels and windows.
It's possible now in UICodeEditorSplitter to cancel a split request with a custom function checker.
When downloading a file that it's not a supported format, it will try to open with the default external program set in the host OS.
This commit is contained in:
Martín Lucas Golini
2026-01-11 13:32:48 -03:00
parent d6f60354c1
commit ac91cedf9c
36 changed files with 333 additions and 47 deletions

View File

@@ -687,6 +687,7 @@ void LLMChatUI::showChatHistory() {
win->center();
win->getModalWidget()->addClass( "shadowbg" );
win->setId( UUID().toString() );
win->on( Event::OnWindowReady, [win]( auto ) { win->setFocus(); } );
loader->center();