summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/PaletteWidget.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-16 00:32:53 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-16 01:11:56 +0200
commit864392254e533d5e5ff4ac310fb415f5c5a9ff9d (patch)
tree5eacc0295bf060806dfe07b5610a90d2c0aa71ce /Userland/Applications/PixelPaint/PaletteWidget.cpp
parent01d88f1b31e8b3553529506676682104d390d7b3 (diff)
downloadserenity-864392254e533d5e5ff4ac310fb415f5c5a9ff9d.zip
PixelPaint: Tweak height of palette widget
Diffstat (limited to 'Userland/Applications/PixelPaint/PaletteWidget.cpp')
-rw-r--r--Userland/Applications/PixelPaint/PaletteWidget.cpp2
1 files changed, 1 insertions, 1 deletions
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<GUI::Frame>();
m_secondary_color_widget->set_relative_rect({ 0, 2, 60, 31 });