From afc3ed228d1a560171d785e73a4afbf860cdbfc2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 15 May 2021 23:10:41 +0200 Subject: [PATCH] PixelPaint: Make the color palette widgets smaller and square --- Userland/Applications/PixelPaint/PaletteWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/PixelPaint/PaletteWidget.cpp b/Userland/Applications/PixelPaint/PaletteWidget.cpp index f67c4c93ce..504ba63f40 100644 --- a/Userland/Applications/PixelPaint/PaletteWidget.cpp +++ b/Userland/Applications/PixelPaint/PaletteWidget.cpp @@ -20,6 +20,7 @@ public: : m_palette_widget(palette_widget) , m_color(color) { + set_fixed_width(16); } virtual ~ColorWidget() override