refhresh on close dialog

This commit is contained in:
Yorick Rommers
2015-10-30 23:33:34 +01:00
parent b3e397d0bf
commit d31519aeca
+3 -2
View File
@@ -281,8 +281,9 @@ namespace MusicPlayer
private void makeToolStripMenuItem_Click(object sender, EventArgs e)
{
new PlaylistMaker(main.pl, main.api).Show();
PlaylistMaker p = new PlaylistMaker(main.pl, main.api);
p.ShowDialog();
main.Repopulate();
}
}