Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
CI09 committed Mar 21, 2024
1 parent 657b5de commit a4600de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/general/base_stage/CreatureStageHUDBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,6 @@ public void ShowReproductionDialog()

GUICommon.Instance.PlayCustomSound(MicrobePickupOrganelleSound);

// TODO: switch these to be fetched just once in _Ready
editorButton.ShowReproductionDialog();

HUDMessages.ShowMessage(Localization.Translate("NOTICE_READY_TO_EDIT"), DisplayDuration.Long);
Expand Down
2 changes: 1 addition & 1 deletion src/microbe_stage/gui/EditorEntryButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public void UpdateReproductionProgressBars(float fractionOfAmmonia, float fracti

public void ShowReproductionDialog()
{
Disabled = false;
highlight.Show();
phosphateReproductionBar.TintProgress = new Color(1, 1, 1, 1);
ammoniaReproductionBar.TintProgress = new Color(1, 1, 1, 1);
Expand All @@ -81,7 +82,6 @@ public void HideReproductionDialog()
if (!Disabled)
Disabled = true;

// TODO: switch these to be fetched just once in _Ready
highlight.Hide();
reproductionBar.Show();
phosphateReproductionBar.TintProgress = new Color(0.69f, 0.42f, 1, 1);
Expand Down

0 comments on commit a4600de

Please sign in to comment.