Fix playlist saving

The fix came from a suggestion by Jonas; I just tested it.
This commit is contained in:
Gavin Howard 2021-02-03 16:38:10 -07:00
parent 59412c54de
commit 0f96daec9a
No known key found for this signature in database
GPG Key ID: C08038BDF280D33E
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ void PlaylistContainer::SetActions(QAction *new_playlist, QAction *load_playlist
ui_->tab_bar->SetActions(new_playlist, load_playlist);
QObject::connect(new_playlist, &QAction::triggered, this, &PlaylistContainer::NewPlaylist);
QObject::connect(save_playlist, &QAction::triggered, this, &PlaylistContainer::SavePlaylist);
QObject::connect(save_playlist, &QAction::triggered, this, &PlaylistContainer::SaveCurrentPlaylist);
QObject::connect(load_playlist, &QAction::triggered, this, &PlaylistContainer::LoadPlaylist);
QObject::connect(clear_playlist, &QAction::triggered, this, &PlaylistContainer::ClearPlaylist);
QObject::connect(next_playlist, &QAction::triggered, this, &PlaylistContainer::GoToNextPlaylistTab);