diff options
author | Karol Kosek <krkk@serenityos.org> | 2022-05-21 00:25:23 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-25 13:42:53 +0200 |
commit | 67f1ac5de75438921ac4a0cb3dd4c60050d7836f (patch) | |
tree | c92e587472c638bbff21f6582275b03d765157c7 | |
parent | 2d6edd5898bae2e28d7d6f03e9efa33150c5d4e8 (diff) | |
download | serenity-67f1ac5de75438921ac4a0cb3dd4c60050d7836f.zip |
ThemeEditor: Use 'open' icon instead of ellipsis on path picker button
The ellipsis seemed a little unclear for me.
-rw-r--r-- | Userland/Applications/ThemeEditor/PathProperty.gml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/ThemeEditor/PathProperty.gml b/Userland/Applications/ThemeEditor/PathProperty.gml index 8ef7aec6b2..d42d0cb863 100644 --- a/Userland/Applications/ThemeEditor/PathProperty.gml +++ b/Userland/Applications/ThemeEditor/PathProperty.gml @@ -17,8 +17,8 @@ @GUI::Button { name: "path_picker_button" - fixed_width: 20 - text: "..." + fixed_width: 22 + icon: "/res/icons/16x16/open.png" tooltip: "Choose..." } } |