aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_utils.c
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-06-16 11:14:25 +0000
committerKalle Wallin <kaw@linux.se>2004-06-16 11:14:25 +0000
commit1cc4b2dbf575a749ead50210355e2cfcfd623171 (patch)
tree99f3020c9800a35894ae39eb9618a7b71b17eb72 /src/screen_utils.c
parent4fce016e7a873d941899c509bd0a5be3f46ea1b8 (diff)
downloadmpd-1cc4b2dbf575a749ead50210355e2cfcfd623171.tar.gz
mpd-1cc4b2dbf575a749ead50210355e2cfcfd623171.tar.xz
mpd-1cc4b2dbf575a749ead50210355e2cfcfd623171.zip
Use the alert color in screen_readln()
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1509 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/screen_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screen_utils.c b/src/screen_utils.c
index 6473244bb..398fdd9fe 100644
--- a/src/screen_utils.c
+++ b/src/screen_utils.c
@@ -78,6 +78,7 @@ screen_readln(WINDOW *w,
wmove(w, 0,0);
curs_set(1);
+ colors_use(w, COLOR_STATUS_ALERT);
line = wreadln(w, prompt, value, COLS, history, gcmp);
curs_set(0);
return line;