removing subtitles by default

This commit is contained in:
Chris Cochrun 2023-02-14 21:55:33 -06:00
parent 398be76d31
commit 93f60ddf3b
3 changed files with 6 additions and 0 deletions

View file

@ -556,6 +556,10 @@ void MpvObject::subAdd(QVariant urls)
command(QVariantList() << "sub-add" << urls);
}
void MpvObject::subRemove()
{
command(QVariantList() << "sub-remove");
}
void MpvObject::updateState()
{