From f8703d44cc00361aa991818dde7fcb4564cf05b9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 30 Nov 2019 15:34:08 +0100 Subject: TextEditor: Focus the editor widget on startup --- Applications/TextEditor/TextEditorWidget.cpp | 2 -- Applications/TextEditor/TextEditorWidget.h | 2 ++ Applications/TextEditor/main.cpp | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'Applications/TextEditor') diff --git a/Applications/TextEditor/TextEditorWidget.cpp b/Applications/TextEditor/TextEditorWidget.cpp index cdf33c7419..27f1fc6595 100644 --- a/Applications/TextEditor/TextEditorWidget.cpp +++ b/Applications/TextEditor/TextEditorWidget.cpp @@ -250,8 +250,6 @@ TextEditorWidget::TextEditorWidget() toolbar->add_action(m_editor->undo_action()); toolbar->add_action(m_editor->redo_action()); - - m_editor->set_focus(true); } TextEditorWidget::~TextEditorWidget() diff --git a/Applications/TextEditor/TextEditorWidget.h b/Applications/TextEditor/TextEditorWidget.h index 208b965931..dbeac28377 100644 --- a/Applications/TextEditor/TextEditorWidget.h +++ b/Applications/TextEditor/TextEditorWidget.h @@ -19,6 +19,8 @@ public: void open_sesame(const String& path); bool request_close(); + GTextEditor& editor() { return *m_editor; } + private: TextEditorWidget(); void set_path(const FileSystemPath& file); diff --git a/Applications/TextEditor/main.cpp b/Applications/TextEditor/main.cpp index 0b0046b84e..d0354d4353 100644 --- a/Applications/TextEditor/main.cpp +++ b/Applications/TextEditor/main.cpp @@ -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; -- cgit v1.2.3