Skip to content

Commit

Permalink
Rearrange items in misc window
Browse files Browse the repository at this point in the history
  • Loading branch information
degeneratehyperbola committed May 26, 2021
1 parent 047b3a6 commit 46a0717
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions NEPS/GUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2002,10 +2002,13 @@ void GUI::renderMiscWindow(bool contentOnly) noexcept

ImGuiCustom::keyBind("Menu key", &config->misc.menuKey);
if (config->misc.menuKey == 1) config->misc.menuKey = 0;

ImGui::Checkbox("Full-auto", &config->misc.autoPistol);
ImGui::SameLine(110.0f);
ImGui::Checkbox("Fast plant", &config->misc.fastPlant);

ImGui::Checkbox("Auto reload", &config->misc.autoReload);
ImGui::Checkbox("Auto accept", &config->misc.autoAccept);
ImGui::Checkbox("Fast plant", &config->misc.fastPlant);
ImGui::Checkbox("Quick reload", &config->misc.quickReload);
ImGuiCustom::keyBind("Prepare revolver", config->misc.prepareRevolver);
ImGuiCustom::keyBind("Quick healthshot", &config->misc.quickHealthshotKey);
Expand All @@ -2016,10 +2019,10 @@ void GUI::renderMiscWindow(bool contentOnly) noexcept
ImGui::Checkbox("Fix movement", &config->misc.fixMovement);
ImGui::Checkbox("Sync client animations", &config->misc.fixAnimation);
ImGui::Checkbox("Disable model occlusion", &config->misc.disableModelOcclusion);
ImGui::Checkbox("Desync resolver", &config->misc.desyncResolver);

ImGui::NextColumn();

ImGui::Checkbox("Desync resolver", &config->misc.desyncResolver);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Experimental");
ImGui::Checkbox("Fix tablet signal", &config->misc.fixTabletSignal);
Expand Down

0 comments on commit 46a0717

Please sign in to comment.