]> granicus.if.org Git - mutt/commitdiff
Also colorize the initial mutt_enter_fname prompt.
authorVincent Lefevre <vincent@vinc17.net>
Thu, 15 Jan 2015 12:19:14 +0000 (13:19 +0100)
committerVincent Lefevre <vincent@vinc17.net>
Thu, 15 Jan 2015 12:19:14 +0000 (13:19 +0100)
Note: the new prompt obtained after a key is typed was already colorized.

curs_lib.c

index 236961297e54d913e8329b34dbf880b67aea5f39..7b6a4f45fb31efdd7142eb14eb39263fbe7a1ead 100644 (file)
@@ -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 ();