1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

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,...).
This commit is contained in:
Štěpán Balážik 2022-12-04 00:09:25 +01:00 committed by Andreas Kling
parent eb44a90e62
commit e3112a3d2e

View file

@ -19,16 +19,16 @@
} }
@GUI::Button { @GUI::Button {
name: "next_button" name: "previous_button"
icon: "/res/icons/16x16/go-down.png" icon: "/res/icons/16x16/go-up.png"
fixed_width: 18 fixed_width: 18
button_style: "Coolbar" button_style: "Coolbar"
focus_policy: "NoFocus" focus_policy: "NoFocus"
} }
@GUI::Button { @GUI::Button {
name: "previous_button" name: "next_button"
icon: "/res/icons/16x16/go-up.png" icon: "/res/icons/16x16/go-down.png"
fixed_width: 18 fixed_width: 18
button_style: "Coolbar" button_style: "Coolbar"
focus_policy: "NoFocus" focus_policy: "NoFocus"