From 9fe43041f562d3ee8bfb46063071201158325738 Mon Sep 17 00:00:00 2001 From: Marcus Nilsson Date: Thu, 16 Sep 2021 13:31:22 +0200 Subject: [PATCH] PixelPaint: Tweak layer/tool properties widget heights There's no use for these two to be larger than necessary when resizing the window. --- Userland/Applications/PixelPaint/PixelPaintWindow.gml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Applications/PixelPaint/PixelPaintWindow.gml b/Userland/Applications/PixelPaint/PixelPaintWindow.gml index 0936c650c5..04dd5a4a77 100644 --- a/Userland/Applications/PixelPaint/PixelPaintWindow.gml +++ b/Userland/Applications/PixelPaint/PixelPaintWindow.gml @@ -61,10 +61,12 @@ @PixelPaint::LayerPropertiesWidget { name: "layer_properties_widget" + max_height: 94 } @PixelPaint::ToolPropertiesWidget { name: "tool_properties_widget" + max_height: 144 } } }