[GUI] Do not throw an exception when trying to stop in ImageEntropyViewModel

This commit is contained in:
2025-10-26 14:49:30 +00:00
parent 627eb80c42
commit 555e885d76

View File

@@ -233,7 +233,10 @@ public sealed partial class ImageEntropyViewModel : ViewModelBase
void Close() => _view.Close();
internal void Stop() => throw new NotImplementedException();
internal void Stop()
{
// Not implemented
}
void InitProgress() => Progress1Visible = true;