TextEditor: Hide the search bar until the user asks for it

You can get to it via Edit/Find, or by pressing Ctrl+F.
This commit is contained in:
Andreas Kling 2019-08-22 11:02:03 +02:00
commit 96c5c9ce12
Notes: sideshowbarker 2024-07-19 12:34:06 +09:00
2 changed files with 9 additions and 0 deletions

View file

@ -28,6 +28,7 @@ private:
RefPtr<GAction> m_open_action;
RefPtr<GAction> m_save_action;
RefPtr<GAction> m_save_as_action;
RefPtr<GAction> m_find_action;
GTextBox* m_find_textbox { nullptr };
GButton* m_find_button { nullptr };