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 | |
parent | a5b1ca01c3e17b4113d54003b2d6f797d54b17a2 (diff) | |
download | pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.tar.gz pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.tar.bz2 pianobar-e6e0b05171fd94f79e139c6157fb29ac2cf64259.zip |
Genre station/rename prompt changed
Diffstat (limited to 'src')
-rw-r--r-- | src/ui.c | 4 | ||||
-rw-r--r-- | src/ui_act.c | 2 |
2 files changed, 3 insertions, 3 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; } diff --git a/src/ui_act.c b/src/ui_act.c index dd04e2e..303cb7b 100644 --- a/src/ui_act.c +++ b/src/ui_act.c @@ -239,7 +239,7 @@ void BarUiActRenameStation (BAR_KS_ARGS) { RETURN_IF_NO_STATION; - lineBuf = readline ("New name?\n"); + lineBuf = readline ("New name: "); if (lineBuf != NULL && strlen (lineBuf) > 0) { if (!BarTransformIfShared (ph, *curStation)) { return; |