about summary refs log tree commit diff stats
path: root/src/lua.c
diff options
context:
space:
mode:
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);