From 5b6d8797215aa5b6fdcba0d826916f15a73d0a3d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 May 2021 00:25:34 +0200 Subject: [PATCH] PixelPaint: Tweak placement of current colors in palette widget --- Userland/Applications/PixelPaint/PaletteWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/PixelPaint/PaletteWidget.cpp b/Userland/Applications/PixelPaint/PaletteWidget.cpp index 74d0b94c08..a998acdc9d 100644 --- a/Userland/Applications/PixelPaint/PaletteWidget.cpp +++ b/Userland/Applications/PixelPaint/PaletteWidget.cpp @@ -64,7 +64,7 @@ PaletteWidget::PaletteWidget() set_fixed_height(34); m_secondary_color_widget = add(); - 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();