diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-22 14:13:00 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-22 14:13:00 +0100 |
commit | 42f582bf8bc6e4893fcc100c2a9afff71fb86fde (patch) | |
tree | 15690e786e03275fd99b4463de42a4aba84f196c /Userland/Applications/DisplaySettings | |
parent | b126ead34e706c0cc7042962fca2721e9c4d17d4 (diff) | |
download | serenity-42f582bf8bc6e4893fcc100c2a9afff71fb86fde.zip |
DisplaySettings: Tweak UI, call it "1x/2x scale" instead of "100%/200%"
Diffstat (limited to 'Userland/Applications/DisplaySettings')
-rw-r--r-- | Userland/Applications/DisplaySettings/DisplaySettingsWindow.gml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Userland/Applications/DisplaySettings/DisplaySettingsWindow.gml b/Userland/Applications/DisplaySettings/DisplaySettingsWindow.gml index 2794423045..3cd1407522 100644 --- a/Userland/Applications/DisplaySettings/DisplaySettingsWindow.gml +++ b/Userland/Applications/DisplaySettings/DisplaySettingsWindow.gml @@ -73,21 +73,20 @@ @GUI::Label { text: "Display scale:" text_alignment: "CenterLeft" - fixed_width: 75 + fixed_width: 95 } @GUI::RadioButton { name: "scale_1x" - text: "100%" + text: "1x" } @GUI::RadioButton { name: "scale_2x" - text: "200%" + text: "2x" } } - @GUI::Widget { shrink_to_fit: true layout: @GUI::HorizontalBoxLayout { @@ -119,19 +118,19 @@ @GUI::Button { name: "ok_button" text: "OK" - fixed_width: 60 + fixed_width: 75 } @GUI::Button { name: "cancel_button" text: "Cancel" - fixed_width: 60 + fixed_width: 75 } @GUI::Button { name: "apply_button" text: "Apply" - fixed_width: 60 + fixed_width: 75 } } } |