mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:47:46 +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:
parent
eb44a90e62
commit
e3112a3d2e
1 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue