diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-01-19 10:05:56 +0100 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-01-19 10:05:56 +0100 |
commit | 1ebe213fb1634e18aef79067c3ea211088c2b6a5 (patch) | |
tree | 2b7162ae0512ac945b2b8f166caa82dadbde51a2 | |
parent | c8f55e392b8cb387a9476a922dea4f390f39f28c (diff) | |
download | pianobar-windows-1ebe213fb1634e18aef79067c3ea211088c2b6a5.tar.gz pianobar-windows-1ebe213fb1634e18aef79067c3ea211088c2b6a5.tar.bz2 pianobar-windows-1ebe213fb1634e18aef79067c3ea211088c2b6a5.zip |
Remove abort keybinding
You can always hit enter to abort.
-rw-r--r-- | src/ui.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -271,9 +271,8 @@ char *BarUiSelectMusicId (PianoHandle_t *ph, FILE *curFd, char *similarToId) { BarUiMsg (MSG_NONE, "\r"); if (searchResult.songs != NULL && searchResult.artists != NULL) { /* songs and artists found */ - BarUiMsg (MSG_QUESTION, "Is this an [a]rtist or [t]rack name? " - "Press c to abort. "); - BarReadline (selectBuf, sizeof (selectBuf), "atc", 1, 0, curFd); + BarUiMsg (MSG_QUESTION, "Is this an [a]rtist or [t]rack name? "); + BarReadline (selectBuf, sizeof (selectBuf), "at", 1, 0, curFd); if (*selectBuf == 'a') { tmpArtist = BarUiSelectArtist (searchResult.artists, curFd); if (tmpArtist != NULL) { |