feat: use plainer arrows
This commit is contained in:
parent
cd9e76947a
commit
04d54db6f6
1 changed files with 2 additions and 2 deletions
|
|
@ -107,7 +107,7 @@ impl State {
|
|||
new_value,
|
||||
})
|
||||
.into(),
|
||||
widget::button("←")
|
||||
widget::button("◄")
|
||||
.on_press_maybe(if i_category > 0 {
|
||||
Some(Message::MoveElement {
|
||||
i_category,
|
||||
|
|
@ -118,7 +118,7 @@ impl State {
|
|||
None
|
||||
})
|
||||
.into(),
|
||||
widget::button("→")
|
||||
widget::button("►")
|
||||
.on_press_maybe(if i_category < self.table.len() - 1 {
|
||||
Some(Message::MoveElement {
|
||||
i_category,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue