summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorConfuSomu2021-03-01 15:13:17 -0500
committerConfuSomu2021-03-01 15:13:17 -0500
commit03c6be69d3ba5ef7070cf857063d2bcfe12d9a3b (patch)
tree020e91b6427ee5c9c149b4478c48ee52ba834c95 /apps
parent2e0650864058f3fb312d2527398fda8d7e97a60d (diff)
downloadpico-watch-03c6be69d3ba5ef7070cf857063d2bcfe12d9a3b.tar
pico-watch-03c6be69d3ba5ef7070cf857063d2bcfe12d9a3b.tar.gz
pico-watch-03c6be69d3ba5ef7070cf857063d2bcfe12d9a3b.zip
Wait for button press then hide popup
Diffstat (limited to 'apps')
-rw-r--r--apps/home_menu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/home_menu.cpp b/apps/home_menu.cpp
index 996b713..b2dddb7 100644
--- a/apps/home_menu.cpp
+++ b/apps/home_menu.cpp
@@ -40,6 +40,7 @@ namespace app_home_menu {
show_title(app_api);
app_api->display_write_string(0,0,2, pressed_button, FONT_6x8, 0, 1);
app_api->display_write_string(0,5,3, APPS_NAME[*selected_app], FONT_12x16, 0, 1);
+ sleep_ms(500);
app_api->gui_popup_text("Title is a string", "Body text, and new line. And this is a pretty long string.\nIterating is very fun!");
return 0;
}