From 2de1f3243360feb9cef7ccd00dd4786eff7c5573 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 9 Apr 2021 23:09:52 +0200 Subject: [PATCH] LibGUI: Yet another FilePicker UI tweak Make sure the "Look in:" label is vertically centered within its corresponding location box. --- Userland/Libraries/LibGUI/FilePickerDialog.gml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Userland/Libraries/LibGUI/FilePickerDialog.gml b/Userland/Libraries/LibGUI/FilePickerDialog.gml index 81b3e3b05d..ed88f80909 100644 --- a/Userland/Libraries/LibGUI/FilePickerDialog.gml +++ b/Userland/Libraries/LibGUI/FilePickerDialog.gml @@ -9,13 +9,13 @@ @GUI::Widget { shrink_to_fit: true layout: @GUI::VerticalBoxLayout { - margins: [4, 4, 4, 4] + margins: [4, 0, 4, 0] } @GUI::Label { text: "Look in:" text_alignment: "CenterRight" - fixed_height: 20 + fixed_height: 24 } @GUI::Frame { @@ -36,7 +36,7 @@ } @GUI::Widget { - fixed_height: 20 + fixed_height: 24 } }