From 864392254e533d5e5ff4ac310fb415f5c5a9ff9d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 May 2021 00:32:53 +0200 Subject: [PATCH] PixelPaint: Tweak height of 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 a998acdc9d..794a0c2298 100644 --- a/Userland/Applications/PixelPaint/PaletteWidget.cpp +++ b/Userland/Applications/PixelPaint/PaletteWidget.cpp @@ -61,7 +61,7 @@ PaletteWidget::PaletteWidget() set_frame_thickness(0); set_fill_with_background_color(true); - set_fixed_height(34); + set_fixed_height(33); m_secondary_color_widget = add(); m_secondary_color_widget->set_relative_rect({ 0, 2, 60, 31 });