1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

PixelPaint: Tweak placement of current colors in palette widget

This commit is contained in:
Andreas Kling 2021-05-16 00:25:34 +02:00
parent 8c044d4f52
commit 5b6d879721

View file

@ -64,7 +64,7 @@ PaletteWidget::PaletteWidget()
set_fixed_height(34); set_fixed_height(34);
m_secondary_color_widget = add<GUI::Frame>(); m_secondary_color_widget = add<GUI::Frame>();
m_secondary_color_widget->set_relative_rect({ 2, 2, 60, 31 }); m_secondary_color_widget->set_relative_rect({ 0, 2, 60, 31 });
m_secondary_color_widget->set_fill_with_background_color(true); m_secondary_color_widget->set_fill_with_background_color(true);
m_primary_color_widget = add<GUI::Frame>(); m_primary_color_widget = add<GUI::Frame>();