diff options
author | wrmr | 2025-10-08 20:17:50 -0400 |
---|---|---|
committer | wrmr | 2025-10-08 20:17:50 -0400 |
commit | 9927d476c5d76475e8aade1d7e579b7857919446 (patch) | |
tree | 6929bba96ce6fa2091f6994fb9c3e36d9bc932b4 | |
parent | d408beff814b74f1d64ea181b6e653e937bd81ad (diff) |
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |