Skip to content

Commit

Permalink
reverse logic
Browse files Browse the repository at this point in the history
  • Loading branch information
KenVanHoeylandt committed Jan 27, 2024
1 parent 0540c3f commit 9cfcb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tactility/src/services/gui/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void gui_keyboard_hide() {
}

bool gui_keyboard_is_enabled() {
return tt_lvgl_keypad_is_available() && !FORCE_ONSCREEN_KEYBOARD;
return !tt_lvgl_keypad_is_available() || FORCE_ONSCREEN_KEYBOARD;
}

void gui_hide_app() {
Expand Down

0 comments on commit 9cfcb16

Please sign in to comment.