about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/lua.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c
index b403e90..f18e7eb 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -637,7 +637,11 @@ restart:
   int history_array = lua_gettop(L);
   int history_array_size = luaL_getn(L, history_array);
 
-  int y = 2;
+  int y = 1;
+  attrset(A_BOLD);
+  mvaddstr(y, 0, "Big picture");
+  attrset(A_NORMAL);
+  y += 2;
   mvaddstr(y, 0, "data:           ");
   // first: data (non-functions) that's not the Teliva menu or curses variables
   for (int i = history_array_size; i > 0; --i) {