Change OnMovieEnd default to 'Pause' instead of 'Finish' (#4008)

This commit is contained in:
RetroEdit 2024-08-18 15:45:04 +00:00 committed by GitHub
parent d9331c5a28
commit 3ede77b8b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
public class MovieConfig : IMovieConfig
{
public MovieEndAction MovieEndAction { get; set; } = MovieEndAction.Finish;
public MovieEndAction MovieEndAction { get; set; } = MovieEndAction.Pause;
public bool EnableBackupMovies { get; set; } = true;
public bool MoviesOnDisk { get; set; }
public int MovieCompressionLevel { get; set; } = 2;