diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2020-08-26 13:10:18 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-27 15:38:02 +0200 |
commit | 0bb2025b69a4f07dfb518023f205ae3e331fedf0 (patch) | |
tree | 5c70c7d45005a05239830aff8d7aea723466f887 /Libraries/LibGfx | |
parent | a49e0fa5d4b01ee47898ce302d0614cb8aeae2a5 (diff) | |
download | serenity-0bb2025b69a4f07dfb518023f205ae3e331fedf0.zip |
Base: Create /res/icons/serenity for misc. sized system icons
Diffstat (limited to 'Libraries/LibGfx')
-rw-r--r-- | Libraries/LibGfx/ClassicStylePainter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Libraries/LibGfx/ClassicStylePainter.cpp b/Libraries/LibGfx/ClassicStylePainter.cpp index ef9de466d9..da62b59358 100644 --- a/Libraries/LibGfx/ClassicStylePainter.cpp +++ b/Libraries/LibGfx/ClassicStylePainter.cpp @@ -336,10 +336,10 @@ static const Gfx::Bitmap& circle_bitmap(bool checked, bool changing) void ClassicStylePainter::paint_radio_button(Painter& painter, const IntRect& rect, const Palette&, bool is_checked, bool is_being_pressed) { if (!s_unfilled_circle_bitmap) { - s_unfilled_circle_bitmap = Bitmap::load_from_file("/res/icons/unfilled-radio-circle.png"); - s_filled_circle_bitmap = Bitmap::load_from_file("/res/icons/filled-radio-circle.png"); - s_changing_filled_circle_bitmap = Bitmap::load_from_file("/res/icons/changing-filled-radio-circle.png"); - s_changing_unfilled_circle_bitmap = Bitmap::load_from_file("/res/icons/changing-unfilled-radio-circle.png"); + s_unfilled_circle_bitmap = Bitmap::load_from_file("/res/icons/serenity/unfilled-radio-circle.png"); + s_filled_circle_bitmap = Bitmap::load_from_file("/res/icons/serenity/filled-radio-circle.png"); + s_changing_filled_circle_bitmap = Bitmap::load_from_file("/res/icons/serenity/changing-filled-radio-circle.png"); + s_changing_unfilled_circle_bitmap = Bitmap::load_from_file("/res/icons/serenity/changing-unfilled-radio-circle.png"); } auto& bitmap = circle_bitmap(is_checked, is_being_pressed); |