Fix frozen engine switch for Whisper - thx Leon :)

Fix #8769
This commit is contained in:
Nikolaj Olsson 2024-08-28 09:31:57 +02:00
parent ccd85ecd4f
commit 6ff163a386

View File

@ -36333,9 +36333,9 @@ namespace Nikse.SubtitleEdit.Forms
if (Configuration.Settings.Tools.WhisperChoice == WhisperChoice.Cpp)
{
if (!RequireWhisperCpp())
if (!RequireWhisperCpp() && Configuration.IsRunningOnWindows)
{
return;
Configuration.Settings.Tools.WhisperChoice = WhisperChoice.PurfviewFasterWhisper;
}
}