diff options
author | FrHun <28605587+frhun@users.noreply.github.com> | 2022-02-22 20:01:20 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-06-28 17:52:42 +0100 |
commit | a6ec2b9d0aafc40cb929068f271dd68adee3d77e (patch) | |
tree | 878d051fd4ad5177a00257f60c78186473e07fcf /Userland/Applications/MouseSettings | |
parent | 39789604812129498920457eadc1d4296c8ac1ba (diff) | |
download | serenity-a6ec2b9d0aafc40cb929068f271dd68adee3d77e.zip |
LibGUI+Applications: Use the new layout system in the settings screens
Diffstat (limited to 'Userland/Applications/MouseSettings')
-rw-r--r-- | Userland/Applications/MouseSettings/Theme.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/MouseSettings/Theme.gml b/Userland/Applications/MouseSettings/Theme.gml index fe144e01cc..fd26d16cf0 100644 --- a/Userland/Applications/MouseSettings/Theme.gml +++ b/Userland/Applications/MouseSettings/Theme.gml @@ -12,7 +12,7 @@ } @GUI::Widget { - shrink_to_fit: true + preferred_height: "fit" layout: @GUI::HorizontalBoxLayout { spacing: 8 } |