summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-16 00:58:29 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-16 01:11:56 +0200
commit10ea84a81557d63c56a2dece01bc6b32f6ba26cf (patch)
treee8bd709f5184edc7e972ce75ce051b2dfdf17954
parent6c2c3b920e733f6dcae4fc1d9b0242c1bd0ace6d (diff)
downloadserenity-10ea84a81557d63c56a2dece01bc6b32f6ba26cf.zip
PixelPaint: Wrap the layer list in a GUI::GroupBox and tweak width
-rw-r--r--Userland/Applications/PixelPaint/PixelPaintWindow.gml13
1 files 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 {