diff --git a/tools/lsp/ui/components/group.slint b/tools/lsp/ui/components/group.slint index 606553c74..89e8fa3b2 100644 --- a/tools/lsp/ui/components/group.slint +++ b/tools/lsp/ui/components/group.slint @@ -42,4 +42,9 @@ export component Group { content-layer := VerticalLayout { @children } + + Rectangle { + border-width: 1px; + border-color: Palette.border; + } } diff --git a/tools/lsp/ui/views/property-view.slint b/tools/lsp/ui/views/property-view.slint index a90a6548f..3d880b8d0 100644 --- a/tools/lsp/ui/views/property-view.slint +++ b/tools/lsp/ui/views/property-view.slint @@ -42,6 +42,8 @@ export component PropertyView { } content-layer := VerticalLayout { + padding: background-layer.border-width; + GroupHeader { title: @tr("Properties"); } @@ -237,4 +239,9 @@ export component PropertyView { } } } + + Rectangle { + border-width: 1px; + border-color: Palette.border; + } }