diff --git a/Applications/TextEditor/TextEditorWidget.cpp b/Applications/TextEditor/TextEditorWidget.cpp index 8e3f2201c2..f7b90a7b48 100644 --- a/Applications/TextEditor/TextEditorWidget.cpp +++ b/Applications/TextEditor/TextEditorWidget.cpp @@ -98,7 +98,7 @@ TextEditorWidget::TextEditorWidget() m_find_textbox = m_find_widget->add(); m_replace_textbox = m_replace_widget->add(); - m_find_next_action = GUI::Action::create("Find next", { Mod_Ctrl, Key_G }, [&](auto&) { + m_find_next_action = GUI::Action::create("Find next", { Mod_Ctrl, Key_G }, Gfx::Bitmap::load_from_file("/res/icons/16x16/find-next.png"), [&](auto&) { auto needle = m_find_textbox->text(); if (needle.is_empty()) { dbg() << "find_next(\"\")"; diff --git a/Base/res/icons/16x16/find-next.png b/Base/res/icons/16x16/find-next.png new file mode 100644 index 0000000000..d940dd728a Binary files /dev/null and b/Base/res/icons/16x16/find-next.png differ