From 9927d476c5d76475e8aade1d7e579b7857919446 Mon Sep 17 00:00:00 2001 From: wrmr Date: Wed, 8 Oct 2025 20:17:50 -0400 Subject: use date instead of time consistently --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 258aa9c..74baeef 100644 --- a/main.c +++ b/main.c @@ -74,7 +74,7 @@ X(CPAIR_MENTION , COLOR_BG , COLOR_FG, "mention")\ X(CPAIR_USER , COLOR_YELLOW , COLOR_BG, "user")\ X(CPAIR_PRONOUNS , COLOR_CYAN , COLOR_BG, "pronouns")\ - X(CPAIR_TIME , COLOR_BLUE , COLOR_BG, "time")\ + X(CPAIR_DATE , COLOR_BLUE , COLOR_BG, "date")\ X(CPAIR_PFP , COLOR_BLUE , COLOR_BG, "pfp")\ X(CPAIR_PFP_SELF , COLOR_YELLOW , COLOR_BG, "pfp.self")\ X(CPAIR_BANNER , COLOR_FG , COLOR_BG, "banner")\ @@ -631,7 +631,7 @@ void gfx_draw_post(GfxPost *post, int y, int x, int width, Arena *scratch) { gfx_draw_box(top, left, height, width); if (opt.post.date) { - color_set(CPAIR_TIME, 0); + color_set(CPAIR_DATE, 0); char time_buf[256] = { 0 }; Str time_str = { 0 }; time_t timep = post->src->timestamp.tv_sec; -- cgit v1.2.3