From f22177171740f0d0bbe161b0d9bde19b6e8a37d5 Mon Sep 17 00:00:00 2001 From: Tibor Nagy Date: Mon, 30 Mar 2020 12:35:16 +0200 Subject: [PATCH] HackStudio: Add icon for the Find action --- DevTools/HackStudio/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/HackStudio/main.cpp b/DevTools/HackStudio/main.cpp index c02b908f4e..96e25936dd 100644 --- a/DevTools/HackStudio/main.cpp +++ b/DevTools/HackStudio/main.cpp @@ -479,7 +479,7 @@ int main(int argc, char** argv) menubar->add_menu(move(project_menu)); auto edit_menu = GUI::Menu::construct("Edit"); - edit_menu->add_action(GUI::Action::create("Find in files...", { Mod_Ctrl | Mod_Shift, Key_F }, [&](auto&) { + edit_menu->add_action(GUI::Action::create("Find in files...", { Mod_Ctrl | Mod_Shift, Key_F }, Gfx::Bitmap::load_from_file("/res/icons/16x16/find.png"), [&](auto&) { reveal_action_tab(find_in_files_widget); find_in_files_widget->focus_textbox_and_select_all(); }));