summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorŠtěpán Balážik <stepan@balazik.cz>2022-12-04 00:09:25 +0100
committerAndreas Kling <kling@serenityos.org>2022-12-04 10:46:30 +0100
commite3112a3d2e7ec5c6958ed075a52b380f7d80557b (patch)
tree3a0cee4f06e1d14d1f7d044348758f99b4740719
parenteb44a90e628be066dbfe685e19d3b64f977dcef1 (diff)
downloadserenity-e3112a3d2e7ec5c6958ed075a52b380f7d80557b.zip
LibGUI: Swap Next and Previous button on IncrementalSearchBanner
This order seems more natural as it is used in basically all apps on other systems (e.g. Firefox, CLion,...).
-rw-r--r--Userland/Libraries/LibGUI/IncrementalSearchBanner.gml8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibGUI/IncrementalSearchBanner.gml b/Userland/Libraries/LibGUI/IncrementalSearchBanner.gml
index 7019d44edd..a10f4a7417 100644
--- a/Userland/Libraries/LibGUI/IncrementalSearchBanner.gml
+++ b/Userland/Libraries/LibGUI/IncrementalSearchBanner.gml
@@ -19,16 +19,16 @@
}
@GUI::Button {
- name: "next_button"
- icon: "/res/icons/16x16/go-down.png"
+ name: "previous_button"
+ icon: "/res/icons/16x16/go-up.png"
fixed_width: 18
button_style: "Coolbar"
focus_policy: "NoFocus"
}
@GUI::Button {
- name: "previous_button"
- icon: "/res/icons/16x16/go-up.png"
+ name: "next_button"
+ icon: "/res/icons/16x16/go-down.png"
fixed_width: 18
button_style: "Coolbar"
focus_policy: "NoFocus"