From 01d88f1b31e8b3553529506676682104d390d7b3 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 May 2021 00:27:01 +0200 Subject: [PATCH] PixelPaint: Wrap the toolbox widget in a GUI::ToolbarContainer This makes it consistent with the main toolbar and looks quite nice. --- Userland/Applications/PixelPaint/PixelPaintWindow.gml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Userland/Applications/PixelPaint/PixelPaintWindow.gml b/Userland/Applications/PixelPaint/PixelPaintWindow.gml index 22dde31f242..df2e051ffaf 100644 --- a/Userland/Applications/PixelPaint/PixelPaintWindow.gml +++ b/Userland/Applications/PixelPaint/PixelPaintWindow.gml @@ -16,11 +16,15 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout { - spacing: 0 + spacing: 2 } - @PixelPaint::ToolboxWidget { - name: "toolbox" + @GUI::ToolbarContainer { + name: "toolbar_container" + + @PixelPaint::ToolboxWidget { + name: "toolbox" + } } @GUI::Widget {