diff options
Diffstat (limited to 'api.hpp')
-rw-r--r-- | api.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,7 +23,8 @@ class Api { void gui_popup_intchoice_footer(int current_num, int min_num, int max_num); void gui_popup_strchoice_footer(const char selection[]); public: - bool m_send_button_press_to_app = true; + // Allow button press to be registed by app and for app_switch (when HOME). Set to false for in Api internal gui. + bool m_interpret_button_press = true; enum app_init_return_status { OK = 0, MALLOC_FAILED = 1 |