浏览代码

TextEditor: Add "Find Next" 16x16 icon

Brendan Coles 5 年之前
父节点
当前提交
a47b9fe490
共有 2 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Applications/TextEditor/TextEditorWidget.cpp
  2. 二进制
      Base/res/icons/16x16/find-next.png

+ 1 - 1
Applications/TextEditor/TextEditorWidget.cpp

@@ -98,7 +98,7 @@ TextEditorWidget::TextEditorWidget()
     m_find_textbox = m_find_widget->add<GUI::TextBox>();
     m_replace_textbox = m_replace_widget->add<GUI::TextBox>();
 
-    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(\"\")";

二进制
Base/res/icons/16x16/find-next.png