parent
2a5d4b903c
commit
5d24d1a260
|
@ -270,7 +270,7 @@ namespace Jellyfish.Virtu
|
|||
bool caps = keys.HasFlag(Keys.CapsLock);
|
||||
if (caps && !_currentCapsLockState) // leading edge: toggle CapsLock
|
||||
{
|
||||
CapsActive ^= true;
|
||||
CapsActive = !CapsActive;
|
||||
}
|
||||
_currentCapsLockState = caps;
|
||||
shift ^= CapsActive;
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
public void ToggleOutput()
|
||||
{
|
||||
UpdateCycles();
|
||||
_isHigh ^= true;
|
||||
_isHigh = !_isHigh;
|
||||
}
|
||||
|
||||
private void FlushOutputEvent()
|
||||
|
|
Loading…
Reference in New Issue