From 10ea84a81557d63c56a2dece01bc6b32f6ba26cf Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 May 2021 00:58:29 +0200 Subject: [PATCH] PixelPaint: Wrap the layer list in a GUI::GroupBox and tweak width --- .../Applications/PixelPaint/PixelPaintWindow.gml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Userland/Applications/PixelPaint/PixelPaintWindow.gml b/Userland/Applications/PixelPaint/PixelPaintWindow.gml index dd1e3dab89..7f978b1d48 100644 --- a/Userland/Applications/PixelPaint/PixelPaintWindow.gml +++ b/Userland/Applications/PixelPaint/PixelPaintWindow.gml @@ -43,13 +43,20 @@ @GUI::Widget { fill_with_background_color: true - fixed_width: 230 + fixed_width: 200 layout: @GUI::VerticalBoxLayout { } - @PixelPaint::LayerListWidget { - name: "layer_list_widget" + @GUI::GroupBox { + title: "Layers" + layout: @GUI::VerticalBoxLayout { + margins: [4, 16, 4, 8] + } + + @PixelPaint::LayerListWidget { + name: "layer_list_widget" + } } @PixelPaint::LayerPropertiesWidget {