Skip to content

Commit 39780e4

Browse files
committed
move some assets, so that we don't have the folder "icon" and "icons"
1 parent 7b21d13 commit 39780e4

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

src/ui/components/color_picker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ ui::ColorPicker::ColorPicker(
376376

377377
const auto focus_id_unused = FocusHelper::focus_id_unused();
378378

379-
const auto rgb_image_path = utils::get_assets_folder() / "icons" / "rgb_color_selector.png";
379+
const auto rgb_image_path = utils::get_assets_folder() / "images" / "rgb_color_selector.png";
380380

381381
m_rgb_button = std::make_unique<ui::ImageButton>(
382382
service_provider, rgb_image_path, true, focus_id_unused,
@@ -389,7 +389,7 @@ ui::ColorPicker::ColorPicker(
389389
ui::Alignment{ ui::AlignmentHorizontal::Middle, ui::AlignmentVertical::Center }, toggle_button_layout, false
390390
);
391391

392-
const auto hsv_image_path = utils::get_assets_folder() / "icons" / "hsv_color_selector.png";
392+
const auto hsv_image_path = utils::get_assets_folder() / "images" / "hsv_color_selector.png";
393393

394394
m_hsv_button = std::make_unique<ui::ImageButton>(
395395
service_provider, hsv_image_path, true, focus_id_unused,

0 commit comments

Comments
 (0)