diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-04-28 16:42:50 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-04-28 16:42:50 +0530 |
| commit | 6e631a0520053c7d3435a193f61e89e695c91f08 (patch) | |
| tree | 17d3d080c2e3afcfeb30e8ed3e4fd01e1ae22f6e /src/handler.rs | |
| parent | 5eafc1898bf41ce2e6d3a634724f9443546af614 (diff) | |
add unadded songs to queue on <space>
Diffstat (limited to 'src/handler.rs')
| -rwxr-xr-x | src/handler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handler.rs b/src/handler.rs index 91dcec7..34c8951 100755 --- a/src/handler.rs +++ b/src/handler.rs @@ -323,7 +323,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { // Remove from Current Playlsit KeyCode::Char(' ') | KeyCode::Backspace => { - app.remove_from_current_playlist(); + app.handle_remove_or_from_current_playlist()?; } // Change playlist name |
