diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-04 19:41:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-04 19:44:27 +0200 |
commit | bc1ec588f087269b45da932d9efc1e25f487a96f (patch) | |
tree | 2e3b60b727eea0fa604fbeb6037377f78b3cd58d /Applications/FileManager | |
parent | 14edd67bccc1288cef0f68283bf4b9ce5d83ab18 (diff) | |
download | serenity-bc1ec588f087269b45da932d9efc1e25f487a96f.zip |
TextEditor: Tweak 16x16 icon
In keeping with the slightly-higher-contrast theme.
Diffstat (limited to 'Applications/FileManager')
-rw-r--r-- | Applications/FileManager/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/FileManager/main.cpp b/Applications/FileManager/main.cpp index b227bf51d5..5b8cbb03f6 100644 --- a/Applications/FileManager/main.cpp +++ b/Applications/FileManager/main.cpp @@ -719,7 +719,7 @@ int run_in_windowed_mode(RefPtr<Core::ConfigFile> config, String initial_locatio copy_action->set_enabled(!selection.is_empty()); }; - auto open_in_text_editor_action = GUI::Action::create("Open in TextEditor...", Gfx::Bitmap::load_from_file("/res/icons/TextEditor16.png"), [&](auto&) { + auto open_in_text_editor_action = GUI::Action::create("Open in TextEditor...", Gfx::Bitmap::load_from_file("/res/icons/16x16/app-text-editor.png"), [&](auto&) { pid_t child; for (auto& path : selected_file_paths()) { const char* argv[] = { "TextEditor", path.characters(), nullptr }; |