We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c6cd8f commit c061577Copy full SHA for c061577
1 file changed
plugins/helix/src/helix.cc
@@ -187,12 +187,11 @@ namespace hal
187
return;
188
}
189
190
- if( command == "GateActionZoom" && instances.size() == 1 )
+ if( command == "GateActionZoom" )
191
{
192
- handle_gate_action_zoom( *instances.begin() );
193
- gui_api.selectGate( *instances.begin(), true, false );
+ gui_api.selectGate( instances, true, true );
194
195
- else if( command == "GateActionIsolate" || command == "GateActionZoom" && instances.size() > 1 )
+ else if( command == "GateActionIsolate" )
196
197
handle_gate_action_isolate( instances );
198
// Why does it not clear the current selection?
0 commit comments