diff options
-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; |