summaryrefslogtreecommitdiff
path: root/plugins/gtkui/actionhandlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gtkui/actionhandlers.c')
-rw-r--r--plugins/gtkui/actionhandlers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gtkui/actionhandlers.c b/plugins/gtkui/actionhandlers.c
index 88214a1c..b2923c2e 100644
--- a/plugins/gtkui/actionhandlers.c
+++ b/plugins/gtkui/actionhandlers.c
@@ -656,7 +656,7 @@ load_playlist_thread (void *data) {
if (plt) {
deadbeef->plt_clear (plt);
int abort = 0;
- DB_playItem_t *it = deadbeef->plt_load (plt, NULL, fname, &abort, NULL, NULL);
+ DB_playItem_t *it = deadbeef->plt_load2 (0, plt, NULL, fname, &abort, NULL, NULL);
if (it) {
deadbeef->pl_item_unref (it);
}
@@ -664,7 +664,7 @@ load_playlist_thread (void *data) {
deadbeef->plt_unref (plt);
}
g_free (fname);
- gtkui_playlist_changed ();
+ deadbeef->sendmessage (DB_EV_PLAYLISTCHANGED, 0, 0, 0);
}