adding missing ux includes

This commit is contained in:
Edouard Merle
2020-08-27 11:52:56 +02:00
committed by TamtamHero
parent ce3609000b
commit 62485a0876
3 changed files with 3 additions and 1 deletions

View File

@@ -79,7 +79,7 @@ void display_next_plugin_item(bool entering) {
// Reset multi page layout to the first page
G_ux.layout_paging.current = 0;
#ifdef TARGET_NANOS
ux_layout_paging_redisplay(G_ux.stack_count - 1);
ux_layout_paging_redisplay_by_addr(G_ux.stack_count - 1);
#else
ux_layout_bnnn_paging_redisplay(0);
#endif

View File

@@ -1,4 +1,5 @@
#include "shared_context.h"
#include "ux.h"
unsigned int io_seproxyhal_touch_settings(const bagl_element_t *e);
unsigned int io_seproxyhal_touch_exit(const bagl_element_t *e);

View File

@@ -1,6 +1,7 @@
#include "shared_context.h"
#include "os_io_seproxyhal.h"
#include "ux.h"
extern const ux_flow_step_t* const ux_idle_flow[];