mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
perf: Mumu截图增强路径清空时不再检查路径是否存在
This commit is contained in:
@@ -4042,7 +4042,7 @@ namespace MaaWpfGui.ViewModels.UI
|
||||
get => _emulatorPath;
|
||||
set
|
||||
{
|
||||
if (_enable && !Directory.Exists(value))
|
||||
if (_enable && !string.IsNullOrEmpty(value) && !Directory.Exists(value))
|
||||
{
|
||||
MessageBoxHelper.Show("MuMu Emulator 12 Path Not Found");
|
||||
value = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user