diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-16 00:27:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-16 01:11:56 +0200 |
commit | 01d88f1b31e8b3553529506676682104d390d7b3 (patch) | |
tree | fb09aab04d0948ea1ecb6c8035527d76be5b52a8 /Userland/Applications | |
parent | c7c273c31db97e5d6dcc33c47c0217408bc9e9a3 (diff) | |
download | serenity-01d88f1b31e8b3553529506676682104d390d7b3.zip |
PixelPaint: Wrap the toolbox widget in a GUI::ToolbarContainer
This makes it consistent with the main toolbar and looks quite nice.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/PixelPaint/PixelPaintWindow.gml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Userland/Applications/PixelPaint/PixelPaintWindow.gml b/Userland/Applications/PixelPaint/PixelPaintWindow.gml index 22dde31f24..df2e051ffa 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 { |