about summary refs log tree commit diff stats
path: root/src/lua.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-14 00:27:59 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-14 00:27:59 -0800
commitd9aac118891ff2029245d65ec139394adb9b6c7d (patch)
tree0c18bd06b84681073989c71390b7f0ce81c0ed09 /src/lua.c
parent9db1cd174f9fd2c969a39302d87cb798e61e059c (diff)
downloadteliva-d9aac118891ff2029245d65ec139394adb9b6c7d.tar.gz
slightly more obvious browse dialog
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c
index 6640dad..e08e7ad 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -443,7 +443,10 @@ void browseImage (lua_State *L) {
     y += 2;
   }
   lua_settop(L, 0);
-  mvaddstr(LINES-1, 0, "edit what? ");
+  attron(A_REVERSE);
+  mvaddstr(LINES-1, 0, " edit what? ");
+  attroff(A_REVERSE);
+  addch(' ');
   char definition[64] = {0};
   getnstr(definition, 60);
   editImage(L, definition);