From c8e68c87b3f6f0ecd09ec0a75ac038e78e78a272 Mon Sep 17 00:00:00 2001 From: Vincent Lefevre Date: Thu, 15 Jan 2015 13:19:14 +0100 Subject: [PATCH] Also colorize the initial mutt_enter_fname prompt. Note: the new prompt obtained after a key is typed was already colorized. --- curs_lib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/curs_lib.c b/curs_lib.c index 236961297..7b6a4f45f 100644 --- a/curs_lib.c +++ b/curs_lib.c @@ -567,8 +567,10 @@ int _mutt_enter_fname (const char *prompt, char *buf, size_t blen, int *redraw, { event_t ch; + SETCOLOR (MT_COLOR_PROMPT); mvaddstr (LINES-1, 0, (char *) prompt); addstr (_(" ('?' for list): ")); + NORMAL_COLOR; if (buf[0]) addstr (buf); clrtoeol (); -- 2.50.1