diff --git a/isometric-park-fna/UI/ForestWindow.cs b/isometric-park-fna/UI/ForestWindow.cs --- a/isometric-park-fna/UI/ForestWindow.cs +++ b/isometric-park-fna/UI/ForestWindow.cs @@ -42,13 +42,20 @@ int new_tree_planting = sim.tree_planting; - ImGui.SliderInt("Tree Planting ", ref new_tree_planting, 0, Simulation.MAX_TREES_TO_PLANT, string.Format("%d (${0})", new_tree_planting*Simulation.TREE_PLANT_COST)); + ImGui.Text("Tree Planting: "); + ImGui.SameLine(); + ImGui.SliderInt("", ref new_tree_planting, 0, Simulation.MAX_TREES_TO_PLANT, string.Format("%d (${0})", new_tree_planting*Simulation.TREE_PLANT_COST)); sim.tree_planting = new_tree_planting; int new_tree_clearing = sim.tree_clearing; - ImGui.SliderInt("Tree Clearing", ref new_tree_clearing, 0, Simulation.MAX_TREES_TO_CLEAR, string.Format("%d (${0})", new_tree_clearing*Simulation.TREE_CLEAR_COST)); + ImGui.Text("Tree Clearing: "); + ImGui.SameLine(); + ImGui.SliderInt("", ref new_tree_clearing, 0, Simulation.MAX_TREES_TO_CLEAR, string.Format("%d (${0})", new_tree_clearing*Simulation.TREE_CLEAR_COST)); sim.tree_clearing = new_tree_clearing; + ImGui.Text("Tresspassing policy:"); + ImGui.SameLine(); + if (ImGui.BeginCombo("##tresspassing2", enforceTresspassing2)) { @@ -82,7 +89,7 @@ var rect = ImGui.GetItemRectMax(); ImGui.SetNextWindowPos(rect + new Num.Vector2(15, 0)); ImGui.BeginTooltip(); - ImGui.Text("Enforcing tresspassing lowers upkeep, but costs money.\n\nRacial minorities may also be targeted unfairly."); + ImGui.Text("Enforcing tresspassing lowers upkeep, but costs money.\n\nRacial minorities may also be targeted disproportionately."); ImGui.EndTooltip(); } diff --git a/isometric-park-fna/UI/OptionsWindow.cs b/isometric-park-fna/UI/OptionsWindow.cs --- a/isometric-park-fna/UI/OptionsWindow.cs +++ b/isometric-park-fna/UI/OptionsWindow.cs @@ -134,7 +134,7 @@ ImGui.Separator(); ImGui.PushFont(italicFont); - ImGui.Text("Text:"); + ImGui.Text("Text"); ImGui.PopFont(); ImGui.Text("Profanity:");