MicroDagr - Fix waypoint scrolling (#6700)

Fix #6521
This commit is contained in:
PabstMirror 2018-11-19 17:57:02 -06:00 committed by GitHub
parent 03e01f02df
commit a357675ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,9 @@ case (APP_MODE_WAYPOINTS): {
} forEach _waypoints;
_currentIndex = (_currentIndex max 0) min (count _waypoints);
_wpListBox lbSetCurSel _currentIndex;
if ((lbCurSel _wpListBox) != _currentIndex) then {
_wpListBox lbSetCurSel _currentIndex;
};
//Reset focus to a dummy ctrl (top button), otherwise HOME/POS1 key goes to top of listBox and has keybind blocked
ctrlSetFocus (_display displayCtrl IDC_TOPMENUBUTTON);