修改了第一个路径导出路径按钮没激活,无法导出的BUG

This commit is contained in:
tian 2025-12-09 17:14:55 +08:00
parent 941bade44a
commit a19e5f91f3
2 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,12 @@
## 功能点
### [2025/12/12]
### [2025/12/09]
1. [ ] BUG路径列表和动画当前路径的变化存在循环引用的情况
2. [ ] BUG动画过程中有一些被碰撞的墙、柱子和其他对象没有被检测到
### [2025/12/08]
1. [ ] (功能)碰撞检测时,增加手工指定被检测构件,用特殊颜色标识
2. [ ] (功能)动画时,物流模型朝向随路径变化

View File

@ -463,7 +463,7 @@ namespace NavisworksTransport.UI.WPF.ViewModels
public bool CanExecuteClearPath => SelectedPathRoute != null && SelectedPathRoute.Points.Count > 0;
public bool CanExecuteExportPath => _pathPlanningManager?.Routes?.Count > 0;
public bool CanExecuteExportPath => _pathPlanningManager?.Routes?.Count > 0 || SelectedPathRoute != null;
public bool CanExecuteSaveAsPath => SelectedPathRoute != null && SelectedPathRoute.Points.Count > 0;