about summary refs log tree commit diff stats
path: root/src/lcurses
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-03-03 22:25:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-03-03 22:25:43 -0800
commit9722f44a94d0cbaee883e796dd3b74a52c63f8fb (patch)
tree6003cda07cbfc9737e18574a0b98116f78b78327 /src/lcurses
parentc53df5c4cc0bf3eb05edbe89a8893d5f4fa6f6f3 (diff)
downloadteliva-9722f44a94d0cbaee883e796dd3b74a52c63f8fb.tar.gz
clearer copy for confirmation dialog
Diffstat (limited to 'src/lcurses')
-rw-r--r--src/lcurses/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lcurses/window.c b/src/lcurses/window.c
index 307dd56..02fccb2 100644
--- a/src/lcurses/window.c
+++ b/src/lcurses/window.c
@@ -1339,7 +1339,7 @@ Wgetch(lua_State *L)
 			draw_menu_item("^p", "modify app permissions");
 		draw_menu_item("anything else", "cancel");
 		color_set(COLOR_PAIR_ERROR, NULL);
-		mvaddstr(LINES-1, menu_column+1, " Are you sure? ");
+		mvaddstr(LINES-1, menu_column+1, " Please confirm. App will restart, losing unsaved data. ");
 		color_set(COLOR_PAIR_NORMAL, NULL);
 		attroff(A_BOLD|A_REVERSE);