Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ToolbarControl/BlizzyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ void DoWindow(int id)

doUseButtons = true;
}
if (!ToolbarControl.registeredMods[mod.modId].noneAllowed)
if (!ToolbarControl.registeredMods[mod.modId].noneAllowed && !HighLogic.CurrentGame.Parameters.CustomParams<TC>().allowAllToolbarButtonsHidden)
GUI.enabled = false;
bool none = (!stock & !blizzy);
bool newnone = GUILayout.Toggle(none, "", GUILayout.Width(25));
Expand Down
7 changes: 5 additions & 2 deletions ToolbarControl/ToolbarControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,11 @@ private void SetBlizzySettings()
{
if (!ToolbarManager.ToolbarAvailable)
{
this.stockActive = true;
SetStockSettings();
if (this.blizzyActive)
{
this.stockActive = true;
SetStockSettings();
}
return;
}
if (!this.stockActive)
Expand Down