1
0
Fork 0

Added back accidently deleted SeekAbsolute command.

This commit is contained in:
namedkitten 2020-05-12 17:25:25 +01:00
parent e7484349a5
commit a438286c71

View file

@ -357,6 +357,12 @@ QVariant playerCommand(BackendInterface* b, const Enums::Commands& cmd, const QV
b->command(QVariantList() << "loadfile" << args << "append-play"); b->command(QVariantList() << "loadfile" << args << "append-play");
break; break;
} }
case Enums::Commands::SeekAbsolute: {
b->command(QVariantList() << "seek" << args << "absolute");
break;
}
case Enums::Commands::Seek: { case Enums::Commands::Seek: {
b->command(QVariantList() << "seek" << args); b->command(QVariantList() << "seek" << args);