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

TextEditor: Replaced 'Find' button with 'Prev' and 'Next' buttons.

This commit is contained in:
Andrew Weller 2019-08-24 12:09:35 -06:00 committed by Andreas Kling
parent 952baf32cd
commit e75e33eb46
4 changed files with 87 additions and 11 deletions

View file

@ -31,6 +31,7 @@ private:
RefPtr<GAction> m_find_action;
GTextBox* m_find_textbox { nullptr };
GButton* m_find_button { nullptr };
GButton* m_find_prev_button { nullptr };
GButton* m_find_next_button { nullptr };
GWidget* m_find_widget { nullptr };
};