We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f257970 commit f8a6376Copy full SHA for f8a6376
Core/Solution/Hover.Common/State/BaseItemState.cs
@@ -252,7 +252,9 @@ public void ResetAllCursorInteractions() {
252
IsSelectionPrevented = false;
253
vIsInResetState = true;
254
255
- foreach ( CursorType cursorType in vCursorWorldPosMap.KeysReadOnly ) {
+ for ( int i = 0 ; i < vCursorWorldPosMap.KeysReadOnly.Count ; i++ ) {
256
+ CursorType cursorType = vCursorWorldPosMap.KeysReadOnly[i];
257
+
258
vCursorWorldPosMap[cursorType] = null;
259
vHighlightDistanceMap[cursorType] = float.MaxValue;
260
vHighlightProgressMap[cursorType] = 0;
0 commit comments