diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2020-08-24 07:02:03 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-27 15:38:02 +0200 |
commit | ebba297b42a54211ba501fd254b629a15ecf5028 (patch) | |
tree | a4bc7465371ad97844415f2d98740123eaf18f0f /DevTools/HackStudio/Editor.cpp | |
parent | 0bb2025b69a4f07dfb518023f205ae3e331fedf0 (diff) | |
download | serenity-ebba297b42a54211ba501fd254b629a15ecf5028.zip |
Base: Move 16x16 common icons to /res/icons/16x16/
Drops the '16' suffix from filenames. Resizes inconsistent
audio-volume icons to intended size.
Diffstat (limited to 'DevTools/HackStudio/Editor.cpp')
-rw-r--r-- | DevTools/HackStudio/Editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/HackStudio/Editor.cpp b/DevTools/HackStudio/Editor.cpp index 1374bd35e3..322ba6220c 100644 --- a/DevTools/HackStudio/Editor.cpp +++ b/DevTools/HackStudio/Editor.cpp @@ -392,7 +392,7 @@ void Editor::clear_execution_position() const Gfx::Bitmap& Editor::breakpoint_icon_bitmap() { - static auto bitmap = Gfx::Bitmap::load_from_file("/res/icons/breakpoint.png"); + static auto bitmap = Gfx::Bitmap::load_from_file("/res/icons/16x16/breakpoint.png"); return *bitmap; } |