1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 14:55:08 +00:00

TextEditor: Focus the editor widget on startup

This commit is contained in:
Andreas Kling 2019-11-30 15:34:08 +01:00
parent ee8773c586
commit f8703d44cc
3 changed files with 4 additions and 2 deletions

View file

@ -12,6 +12,8 @@ int main(int argc, char** argv)
auto text_widget = TextEditorWidget::construct();
window->set_main_widget(text_widget);
text_widget->editor().set_focus(true);
window->on_close_request = [&]() -> GWindow::CloseRequestDecision {
if (text_widget->request_close())
return GWindow::CloseRequestDecision::Close;