@@ -345,7 +345,7 @@ public override string GetInfo()
345345 }
346346
347347 /* SCAN: context (right click) buttons in FLIGHT */
348- [ KSPEvent ( guiActive = true , guiName = "Start RADAR Scan" , active = true ) ]
348+ [ KSPEvent ( guiActive = true , guiName = "Start RADAR Scan" , groupName = "scaninfo" , active = true ) ]
349349 public void startScan ( )
350350 {
351351 if ( ! ToolbarManager . ToolbarAvailable && SCANcontroller . controller != null )
@@ -359,7 +359,7 @@ public void startScan()
359359 animate ( 1 , 0 ) ;
360360 }
361361
362- [ KSPEvent ( guiActive = true , guiName = "Stop RADAR Scan" , active = true , requireFullControl = false ) ]
362+ [ KSPEvent ( guiActive = true , guiName = "Stop RADAR Scan" , groupName = "scaninfo" , active = true , requireFullControl = false ) ]
363363 public void stopScan ( )
364364 {
365365 unregisterScanner ( ) ;
@@ -368,15 +368,15 @@ public void stopScan()
368368 }
369369
370370 /* SCAN: context (right click) buttons in EDTIOR */
371- [ KSPEvent ( guiActiveEditor = true , guiName = "Extend" , active = true ) ]
371+ [ KSPEvent ( guiActiveEditor = true , guiName = "Extend" , groupName = "scaninfo" , active = true ) ]
372372 public void editorExtend ( )
373373 {
374374 Events [ "editorExtend" ] . active = false ;
375375 Events [ "editorRetract" ] . active = true ;
376376 animate ( 1 , 0 ) ;
377377 }
378378
379- [ KSPEvent ( guiActiveEditor = true , guiName = "Retract" , active = false ) ]
379+ [ KSPEvent ( guiActiveEditor = true , guiName = "Retract" , groupName = "scaninfo" , active = false ) ]
380380 public void editorRetract ( )
381381 {
382382 Events [ "editorExtend" ] . active = true ;
0 commit comments