diff options
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/screen_help.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ * command.[c|h]: check_key_bindings() can now write an error messages to a buffer instead of stderr * main.c: display errors without exiting when key bindings are broken + * screen_help.c: added the add command to the help screen 2004-06-17 Kalle Wallin <kaw@linux.se> * Added a add command, used to add urls or files to the playlist, with diff --git a/src/screen_help.c b/src/screen_help.c index 2f042499f..4d76ffe7f 100644 --- a/src/screen_help.c +++ b/src/screen_help.c @@ -96,6 +96,7 @@ static help_text_row_t help_text[] = { 0, CMD_CLEAR, NULL }, { 0, CMD_LIST_MOVE_UP, N_("Move song up") }, { 0, CMD_LIST_MOVE_DOWN, N_("Move song down") }, + { 0, CMD_ADD, NULL }, { 0, CMD_SAVE_PLAYLIST, NULL }, { 0, CMD_SCREEN_UPDATE, N_("Center") }, { 0, CMD_TOGGLE_AUTOCENTER, NULL }, |