From ef29552dba45e197472b121a781368ee2fa55b0f Mon Sep 17 00:00:00 2001 From: Riot Date: Mon, 15 May 2023 00:37:52 +0200 Subject: [PATCH] fix: Added indent/unindent to make Param->Action look cleaner. --- RotationSolver/UI/RotationConfigWindow_Param.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RotationSolver/UI/RotationConfigWindow_Param.cs b/RotationSolver/UI/RotationConfigWindow_Param.cs index 5068f4b51..a1835e2ee 100644 --- a/RotationSolver/UI/RotationConfigWindow_Param.cs +++ b/RotationSolver/UI/RotationConfigWindow_Param.cs @@ -279,12 +279,14 @@ private void DrawParamAction() if(Basic.Configuration.PluginConfiguration.GetValue(SettingsCommand.UseAOEAction)) { + ImGui.Indent(); DrawCheckBox(LocalizationManager.RightLang.ConfigWindow_Param_UseAOEWhenManual, SettingsCommand.UseAOEWhenManual); DrawCheckBox(LocalizationManager.RightLang.ConfigWindow_Param_NoNewHostiles, ref Service.Config.NoNewHostiles, Service.Default.NoNewHostiles, LocalizationManager.RightLang.ConfigWindow_Params_NoNewHostilesDesc); + ImGui.Unindent(); } DrawCheckBox(LocalizationManager.RightLang.ConfigWindow_Param_PreventActionsIfOutOfCombat, @@ -292,8 +294,10 @@ private void DrawParamAction() if (Basic.Configuration.PluginConfiguration.GetValue(SettingsCommand.PreventActions)) { + ImGui.Indent(); DrawCheckBox(LocalizationManager.RightLang.ConfigWindow_Param_PreventActionsIfDutyRing, SettingsCommand.PreventActionsDuty); + ImGui.Unindent(); } ImGui.Separator();