1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 19:40:20 +03:00

Fixes #4085: Horus simulator rotary control improvements (#4087)

* Fix for issue with trackpad & mouse wheel: Small movements up or down send delta=0, causing always events in the same direction.
* Changed keys to X,C
This commit is contained in:
joaquins 2016-12-23 11:13:00 -08:00 committed by Damjan Adamic
parent bab5fc339e
commit d9981b25d9
2 changed files with 12 additions and 3 deletions

View file

@ -360,11 +360,11 @@ long Open9xSim::onTimeout(FXObject*, FXSelector, void*)
#if defined(ROTARY_ENCODER_NAVIGATION)
static bool rotencAction = false;
if (getApp()->getKeyState(KEY_X)) {
if (getApp()->getKeyState(KEY_C)) {
if (!rotencAction) ROTARY_ENCODER_NAVIGATION_VALUE += ROTARY_ENCODER_GRANULARITY;
rotencAction = true;
}
else if (getApp()->getKeyState(KEY_W) || getApp()->getKeyState(KEY_Z)) {
else if (getApp()->getKeyState(KEY_X)) {
if (!rotencAction) ROTARY_ENCODER_NAVIGATION_VALUE -= ROTARY_ENCODER_GRANULARITY;
rotencAction = true;
}