Re-add alt as a backup option for heuristic skips

This commit is contained in:
Seth Hillbrand 2021-09-05 19:32:07 -07:00
parent 60a593b44b
commit 0a9a6dec7d
1 changed files with 6 additions and 0 deletions

View File

@ -55,4 +55,10 @@ void SELECTION_TOOL::setModifiersState( bool aShiftState, bool aCtrlState, bool
m_drag_additive = ( aCtrlState || aShiftState ) && ! aAltState;
m_drag_subtractive = aCtrlState && aShiftState && !aAltState;
// While the ALT key has some conflicts under MSW (and some flavors of Linux WMs), it remains
// useful for users who only use tap-click rather than holding the button. It doesn't hurt
// to also have this option.
m_skip_heuristics = aAltState;
}