diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-26 17:45:36 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-26 18:04:58 -0800 |
commit | 080ea49d23ce3422c1680ae4e83a3ed09e978983 (patch) | |
tree | d0ed1f764017a344017771e541fdb0ee5e61e657 /src | |
parent | 0800f65eff8380d9d96add5c25ef64d5dc557c59 (diff) | |
download | teliva-080ea49d23ce3422c1680ae4e83a3ed09e978983.tar.gz |
standardize screen headings
Diffstat (limited to 'src')
-rw-r--r-- | src/lua.c | 6 |
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) { |