diff options
| author | Federico Angelilli <code@fedang.net> | 2024-03-06 21:36:14 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-03-06 21:36:14 +0100 |
| commit | f7e94e7a0f33cbf6b5ee784974a431d633aada0f (patch) | |
| tree | 4bdfd2a42d198c0a295880cf433ec3ee5c8863fb /src/state.h | |
| parent | f4b80335df97b6136682b1acb71ecf4766d636ed (diff) | |
Fix button ordering bug
Diffstat (limited to 'src/state.h')
| -rw-r--r-- | src/state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state.h b/src/state.h index 1dedd8e..9ce4cc9 100644 --- a/src/state.h +++ b/src/state.h @@ -22,6 +22,8 @@ void state_add_button(State *state, Button *btn); void state_remove_button(State *state, Button *btn); +void state_order_button(State *state); + void state_redraw(State *state, bool changed_layout); void state_destroy(State *state); |
