add ctrlWheelModifier option for Alt

This commit is contained in:
Adam Lederer 2024-09-02 18:48:03 -07:00 committed by tildearrow
parent 5d351eab0a
commit 59c60ba3a6
2 changed files with 8 additions and 1 deletions

View file

@ -433,6 +433,8 @@ bool FurnaceGUI::isCtrlWheelModifierHeld() const {
return ImGui::IsKeyDown(ImGuiMod_Ctrl);
case 2:
return ImGui::IsKeyDown(ImGuiMod_Super);
case 3:
return ImGui::IsKeyDown(ImGuiMod_Alt);
default:
return false;
}