diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-01-20 17:14:58 +0100 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2009-01-20 17:14:58 +0100 |
commit | e6e0b05171fd94f79e139c6157fb29ac2cf64259 (patch) | |
tree | 8e00770f5617f62bb36456b290721f8bb6876165 /src/ui.c | |
parent | a5b1ca01c3e17b4113d54003b2d6f797d54b17a2 (diff) | |
download | pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.tar.gz pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.tar.bz2 pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.zip |
Genre station/rename prompt changed
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -312,7 +312,7 @@ void BarStationFromGenre (PianoHandle_t *ph) { curCat = curCat->next; } /* select category or exit */ - if (!BarReadlineInt (NULL, &i)) { + if (!BarReadlineInt ("Select category: ", &i)) { BarUiMsg ("Aborted.\n"); return; } @@ -330,7 +330,7 @@ void BarStationFromGenre (PianoHandle_t *ph) { i++; curStation = curStation->next; } - if (!BarReadlineInt (NULL, &i)) { + if (!BarReadlineInt ("Select genre: ", &i)) { BarUiMsg ("Aborted.\n"); return; } |