diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/event/handler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/handler.rs b/src/event/handler.rs index 3d472a6..5a83c1e 100755 --- a/src/event/handler.rs +++ b/src/event/handler.rs @@ -155,7 +155,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { } // Add or Remove from Current Playlist - KeyCode::Char(' ') | KeyCode::Backspace => { + KeyCode::Char(' ') => { app.handle_add_or_remove_from_current_playlist()?; } _ => {} |
