@@ -339,6 +339,15 @@ public static void hideAll()
339339 showSimLengthChooser = false ;
340340 showPresetSaver = false ;
341341 showLaunchSiteSelector = false ;
342+
343+
344+ if ( ! KCT_GameStates . settings . PreferBlizzyToolbar )
345+ {
346+ if ( KCT_Events . instance != null && KCT_Events . instance . KCTButtonStock != null )
347+ {
348+ KCT_Events . instance . KCTButtonStock . SetFalse ( true ) ;
349+ }
350+ }
342351 clicked = false ;
343352
344353 //VABSelected = false;
@@ -450,10 +459,10 @@ private static void DrawEditorGUI(int windowID)
450459 //GUILayout.Label("Total Build Points (BP):", GUILayout.ExpandHeight(true));
451460 //GUILayout.Label(Math.Round(buildTime, 2).ToString(), GUILayout.ExpandHeight(true));
452461 GUILayout . BeginHorizontal ( ) ;
453- GUILayout . Label ( "Build Time at rate: " ) ;
462+ GUILayout . Label ( "Build Time at " ) ;
454463 if ( buildRateForDisplay == null ) buildRateForDisplay = KCT_Utilities . GetBuildRate ( 0 , type , null ) . ToString ( ) ;
455464 buildRateForDisplay = GUILayout . TextField ( buildRateForDisplay , GUILayout . Width ( 75 ) ) ;
456- // GUILayout.Label(" BP/s:");
465+ GUILayout . Label ( " BP/s:" ) ;
457466 List < double > rates = new List < double > ( ) ;
458467 if ( type == KCT_BuildListVessel . ListType . VAB ) rates = KCT_Utilities . BuildRatesVAB ( null ) ;
459468 else rates = KCT_Utilities . BuildRatesSPH ( null ) ;
@@ -544,10 +553,10 @@ private static void DrawEditorGUI(int windowID)
544553
545554 KCT_BuildListVessel . ListType type = EditorLogic . fetch . launchSiteName == "LaunchPad" ? KCT_BuildListVessel . ListType . VAB : KCT_BuildListVessel . ListType . SPH ;
546555 GUILayout . BeginHorizontal ( ) ;
547- GUILayout . Label ( "Build Time at rate: " ) ;
556+ GUILayout . Label ( "Build Time at " ) ;
548557 if ( buildRateForDisplay == null ) buildRateForDisplay = KCT_Utilities . GetBuildRate ( 0 , type , null ) . ToString ( ) ;
549558 buildRateForDisplay = GUILayout . TextField ( buildRateForDisplay , GUILayout . Width ( 75 ) ) ;
550- // GUILayout.Label(" BP/s:");
559+ GUILayout . Label ( " BP/s:" ) ;
551560 List < double > rates = new List < double > ( ) ;
552561 if ( ship . type == KCT_BuildListVessel . ListType . VAB ) rates = KCT_Utilities . BuildRatesVAB ( null ) ;
553562 else rates = KCT_Utilities . BuildRatesSPH ( null ) ;
0 commit comments