Ver código fonte

LibGUI: Yet another FilePicker UI tweak

Make sure the "Look in:" label is vertically centered within its
corresponding location box.
Andreas Kling 4 anos atrás
pai
commit
2de1f32433
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      Userland/Libraries/LibGUI/FilePickerDialog.gml

+ 3 - 3
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
         }
     }