From 6e25bab4dca20f219d306070c1a0cda05c42f133 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 23696129..7b6a4f45 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.40.0