Changeset 1133
- Timestamp:
- 11/07/08 11:47:34 (5 years ago)
- Location:
- windows/neo-vars/src/Source
- Files:
-
- 2 modified
-
recycle.ahk (modified) (3 diffs)
-
varsfunctions.ahk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
windows/neo-vars/src/Source/recycle.ahk
r1128 r1133 158 158 guiErstellt := 0 159 159 alwaysOnTop := 1 160 wasNonShiftKeyPressed := 0 160 161 isShiftRPressed := 0 161 162 isShiftLPressed := 0 … … 529 530 530 531 ~*VKA1SC136:: 531 if (isShiftLPressed and !isShiftRPressed )532 if (isShiftLPressed and !isShiftRPressed and !wasNonShiftKeyPressed) 532 533 ToggleMod2Lock() 533 534 isShiftRPressed := 1 534 535 isShiftPressed := 1 536 wasNonShiftKeyPressed := 0 535 537 EbeneAktualisieren() 536 538 return … … 543 545 544 546 ~*VKA0SC02A:: 545 if (isShiftRPressed and !isShiftLPressed )547 if (isShiftRPressed and !isShiftLPressed and !wasNonShiftKeyPressed) 546 548 ToggleMod2Lock() 547 549 isShiftLPressed := 1 548 550 isShiftPressed := 1 551 wasNonShiftKeyPressed := 0 549 552 EbeneAktualisieren() 550 553 return -
windows/neo-vars/src/Source/varsfunctions.ahk
r1124 r1133 31 31 CharStarDown(PhysKey, ActKey, char) { 32 32 global 33 wasNonShiftKeyPressed := 1 33 34 if (PP%PhysKey% != "") 34 35 CompNew := PP%PhysKey% ; Von Tastaturwiederholung
