diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-04 18:23:34 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-04 18:23:34 +0100 |
commit | ded4d576df7b5b524b60c06161c5a648f453fb4f (patch) | |
tree | 413b56a8f89ec865267f5fa05c16228def671632 /Applications | |
parent | 21bacec13f1e825547959114f12e2f3397a45b75 (diff) | |
download | serenity-ded4d576df7b5b524b60c06161c5a648f453fb4f.zip |
DisplaySettings: Use shrink-to-fit to simplify GML
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/DisplaySettings/DisplaySettingsWindow.gml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Applications/DisplaySettings/DisplaySettingsWindow.gml b/Applications/DisplaySettings/DisplaySettingsWindow.gml index 481bb340df..af9f204f03 100644 --- a/Applications/DisplaySettings/DisplaySettingsWindow.gml +++ b/Applications/DisplaySettings/DisplaySettingsWindow.gml @@ -12,9 +12,8 @@ } @GUI::Widget { - fixed_height: 22 + shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { - margins: [0, 4, 0, 0] } @GUI::Label { @@ -37,9 +36,8 @@ } @GUI::Widget { - fixed_height: 22 + shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { - margins: [0, 4, 0, 0] } @GUI::Label { @@ -54,9 +52,8 @@ } @GUI::Widget { - fixed_height: 22 + shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { - margins: [0, 4, 0, 0] } @GUI::Label { @@ -72,9 +69,8 @@ @GUI::Widget { - fixed_height: 22 + shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { - margins: [0, 4, 0, 0] } @GUI::Label { @@ -93,7 +89,7 @@ } @GUI::Widget { - fixed_height: 22 + shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { } |