From 58106f57deb7ae743e5a6527ca892fb75350a04f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 9 Apr 2021 23:58:04 +0200 Subject: [PATCH] LibGUI: Remove 2px of vertical space around FilePicker common places The extra margin is not needed with the new "Tray" look. :^) --- Userland/Libraries/LibGUI/FilePickerDialog.gml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/FilePickerDialog.gml b/Userland/Libraries/LibGUI/FilePickerDialog.gml index ed88f80909..6ee14b1bf6 100644 --- a/Userland/Libraries/LibGUI/FilePickerDialog.gml +++ b/Userland/Libraries/LibGUI/FilePickerDialog.gml @@ -24,7 +24,7 @@ fill_with_background_color: true layout: @GUI::VerticalBoxLayout { - margins: [2, 4, 2, 4] + margins: [2, 2, 2, 2] spacing: 0 } }