diff options
author | Rye Mutt <rye@alchemyviewer.org> | 2022-10-30 06:59:54 -0400 |
---|---|---|
committer | Rye Mutt <rye@alchemyviewer.org> | 2022-10-30 06:59:54 -0400 |
commit | 8669f3f4c207e913bc2f6e39438d92d76b3aa1c4 (patch) | |
tree | a998031015c8e9e90d742bc1863eb86435fcf695 /indra/llui/lllineeditor.cpp | |
parent | a022452ff56c31cb028d5a17d827c82f1a74e624 (diff) |
Fix line editors deselecting when pressing capslock
Diffstat (limited to 'indra/llui/lllineeditor.cpp')
-rw-r--r-- | indra/llui/lllineeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index 33037b5001..4c7dd034fc 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -1567,7 +1567,7 @@ BOOL LLLineEditor::handleKeyHere(KEY key, MASK mask ) KEY_SHIFT != key && KEY_CONTROL != key && KEY_ALT != key && - KEY_CAPSLOCK ) + KEY_CAPSLOCK != key) { deselect(); } |