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
Notes: sideshowbarker 2024-07-18 18:04:18 +09:00

View file

@ -64,7 +64,7 @@ PaletteWidget::PaletteWidget()
set_fixed_height(34);
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_primary_color_widget = add<GUI::Frame>();