Skip to content

Commit

Permalink
Fix station name when deleting a station
Browse files Browse the repository at this point in the history
  • Loading branch information
PromyLOPh committed Mar 20, 2013
1 parent 5e17cd1 commit b849ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui_act.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ BarUiActCallback(BarUiActDeleteStation) {
assert (selStation != NULL);

BarUiMsg (&app->settings, MSG_QUESTION, "Really delete \"%s\"? [yN] ",
app->curStation->name);
selStation->name);
if (BarReadlineYesNo (false, &app->input)) {
BarUiMsg (&app->settings, MSG_INFO, "Deleting station... ");
if (BarUiActDefaultPianoCall (PIANO_REQUEST_DELETE_STATION,
Expand Down

0 comments on commit b849ea7

Please sign in to comment.