Major UI rework!

This commit is contained in:
Frank Skare
2021-08-22 18:50:11 +02:00
parent 0829b4bd9e
commit 17ecd9cb82
37 changed files with 3238 additions and 705 deletions

View File

@@ -385,7 +385,12 @@ namespace mpvnet
CommandPaletteItem item = new CommandPaletteItem() {
Text = file.FileName(),
Action = () => Core.SetPropertyInt("playlist-pos", index)
Action = () => {
Core.SetPropertyInt("playlist-pos", index);
if (Core.Paused)
Core.SetPropertyBool("pause", false);
}
};
items.Add(item);