diff options
author | Tibor Nagy <xnagytibor@gmail.com> | 2020-03-30 12:35:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-30 13:03:53 +0200 |
commit | f22177171740f0d0bbe161b0d9bde19b6e8a37d5 (patch) | |
tree | 5295c7d894175b270cd40fd711f53133c0e612d5 /DevTools/HackStudio | |
parent | c7f3d72a6ab1b343f3b522e7ff07ceca6f74f7d8 (diff) | |
download | serenity-f22177171740f0d0bbe161b0d9bde19b6e8a37d5.zip |
HackStudio: Add icon for the Find action
Diffstat (limited to 'DevTools/HackStudio')
-rw-r--r-- | DevTools/HackStudio/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); })); |