1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

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
parent 933a98f8fa
commit 96c5c9ce12
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 };