A few minor fixes for last commits - thx xylographe :)

This commit is contained in:
Nikolaj Olsson 2016-03-01 07:51:25 +01:00
parent fae0633fa0
commit 3b37525659
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
* Allow reading of small PAC files - thx Mike
* Fixed bug in "Fix invalid italic tags" - thx ivandrofly
* Fixed allowing random order of json tags - thx fela98
* Utx won't load text if starts with '#' - thx invandrofly
* Utx won't load text if starts with '#' - thx ivandrofly
* Fixed crash when showing text "<i></i><i>..." - thx montillasauces
* Fix for TTML 1.0 to keep source time format when using frames - thx Tuan
* Fixed split when subtitle has no time code - thx João

View File

@ -286,7 +286,7 @@ namespace Nikse.SubtitleEdit.Logic.VideoPlayers
{
id = _audioTrackIds[value];
}
_mpvCommand(_mpvHandle, new[] { "set", "aid", id.ToString(CultureInfo.InvariantCulture), null });
_mpvCommand(_mpvHandle, new[] { "set", "aid", id, null });
}
}