fix: 修改彩蛋gif默认路径为string.Empty

This commit is contained in:
status102
2025-03-06 10:41:05 +08:00
parent c139c29538
commit 1090f6bd5a

View File

@@ -211,9 +211,9 @@ namespace MaaWpfGui.ViewModels.UI
private static int _gifIndex = -1;
private static string? _gifPath = null;
private static string _gifPath = string.Empty;
public string? GifPath
public string GifPath
{
get => _gifPath;
set => SetAndNotify(ref _gifPath, value);