1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:15:10 +00:00

HackStudio: Focus the text editor after opening a file

This commit is contained in:
Andreas Kling 2019-10-26 21:45:29 +02:00
parent cea6506998
commit dd74cb9c8f

View file

@ -315,4 +315,6 @@ void open_file(const String& filename)
g_currently_open_file = filename;
g_window->set_title(String::format("%s - HackStudio", g_currently_open_file.characters()));
g_project_list_view->update();
g_text_editor->set_focus(true);
}