Disable deselect net from main context menu

Right now we can't track the intended item to deselect
when there's an active selection already.

Having this feature available just from the appearance panel
should be fine.
This commit is contained in:
Jon Evans 2020-09-16 19:15:14 -04:00
parent a82edb60fe
commit 5109857883
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ public:
Add( PCB_ACTIONS::selectConnection ); Add( PCB_ACTIONS::selectConnection );
Add( PCB_ACTIONS::selectNet ); Add( PCB_ACTIONS::selectNet );
Add( PCB_ACTIONS::deselectNet ); // This could be enabled if we have better logic for picking the target net with the mouse
// Add( PCB_ACTIONS::deselectNet );
Add( PCB_ACTIONS::selectSameSheet ); Add( PCB_ACTIONS::selectSameSheet );
} }