Skip to content

Commit

Permalink
grahh this should make it not be dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
nyakowint committed Oct 3, 2023
1 parent 21201ee commit 324b5fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KeyboardOSC/ChatModeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ private static void ProcessKey(VirtualKeyCode key, KeyboardKey.VirtualKeyEventDa
case VirtualKeyCode.VK_C:
if (!isCtrlHeld) break;
GUIUtility.systemCopyBuffer = _currentText;
break;
return;
case VirtualKeyCode.VK_V:
if (!isCtrlHeld) break;
_currentText += GUIUtility.systemCopyBuffer;
UpdateChatText(_currentText);
break;
return;
}


Expand Down

0 comments on commit 324b5fb

Please sign in to comment.