Skip to content
Snippets Groups Projects
Commit 8669f3f4 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix line editors deselecting when pressing capslock

parent a022452f
No related branches found
No related tags found
No related merge requests found
...@@ -1567,7 +1567,7 @@ BOOL LLLineEditor::handleKeyHere(KEY key, MASK mask ) ...@@ -1567,7 +1567,7 @@ BOOL LLLineEditor::handleKeyHere(KEY key, MASK mask )
KEY_SHIFT != key && KEY_SHIFT != key &&
KEY_CONTROL != key && KEY_CONTROL != key &&
KEY_ALT != key && KEY_ALT != key &&
KEY_CAPSLOCK ) KEY_CAPSLOCK != key)
{ {
deselect(); deselect();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment