修复 BGA 识别后下一步状态刷新

This commit is contained in:
zhengxuan.zhang
2026-08-03 17:29:43 +08:00
parent 67487292c8
commit 1ccf3e094f
@@ -109,7 +109,11 @@ namespace XplorePlane.ViewModels.Inspection.TaskWizard
public IReadOnlyList<BGABall> DetectedBalls
{
get => _detectedBalls;
set => SetProperty(ref _detectedBalls, value);
set
{
if (SetProperty(ref _detectedBalls, value))
UpdateNavigationState();
}
}
private InspectionPool? _pool;