diff options
-rw-r--r-- | Applications/TextEditor/TextEditorWidget.cpp | 2 | ||||
-rw-r--r-- | Base/res/icons/16x16/find-previous.png | bin | 0 -> 514 bytes |
2 files changed, 1 insertions, 1 deletions
diff --git a/Applications/TextEditor/TextEditorWidget.cpp b/Applications/TextEditor/TextEditorWidget.cpp index d824b9cf2b..994b13f703 100644 --- a/Applications/TextEditor/TextEditorWidget.cpp +++ b/Applications/TextEditor/TextEditorWidget.cpp @@ -117,7 +117,7 @@ TextEditorWidget::TextEditorWidget() } }); - m_find_previous_action = GUI::Action::create("Find previous", { Mod_Ctrl | Mod_Shift, Key_G }, [&](auto&) { + m_find_previous_action = GUI::Action::create("Find previous", { Mod_Ctrl | Mod_Shift, Key_G }, Gfx::Bitmap::load_from_file("/res/icons/16x16/find-previous.png"), [&](auto&) { auto needle = m_find_textbox->text(); if (needle.is_empty()) { dbg() << "find_prev(\"\")"; diff --git a/Base/res/icons/16x16/find-previous.png b/Base/res/icons/16x16/find-previous.png Binary files differnew file mode 100644 index 0000000000..72e4eb8e8f --- /dev/null +++ b/Base/res/icons/16x16/find-previous.png |