16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-17 23:39:18 +02:00

Merge pull request #122 from dos1/picking

drivermode: Allow to (un)set picking mode by combining Alt with Shift/Ctrl
This commit is contained in:
2026-06-30 09:24:43 +02:00
committed by GitHub

View File

@@ -496,7 +496,7 @@ void driver_mode::on_key(int const Key, int const Scancode, int const Action, in
if (Action == GLFW_PRESS)
{
// toggle picking mode
set_picking(!Global.ControlPicking);
set_picking(Global.shiftState ? true : (Global.ctrlState ? false : !Global.ControlPicking));
}
}