diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-06-27 00:25:38 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-06-27 00:29:34 +0300 |
commit | 7849e12c3104771a96806e8e721e3d5d92f856d2 (patch) | |
tree | eabdf003b4ef9cf02e933c1bef0f5352c640e248 | |
parent | cd0c40c71af767dd66694dc3329e08823aa6b6e7 (diff) |
SL-19815 Fix missed 'handled' flags
-rw-r--r-- | indra/newview/llinventorygallery.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llinventorygallery.cpp b/indra/newview/llinventorygallery.cpp index 248f3ed649..2a71735a53 100644 --- a/indra/newview/llinventorygallery.cpp +++ b/indra/newview/llinventorygallery.cpp @@ -1045,6 +1045,7 @@ BOOL LLInventoryGallery::handleKeyHere(KEY key, MASK mask) } } } + handled = TRUE; break; case KEY_DELETE: #if LL_DARWIN @@ -1056,6 +1057,7 @@ BOOL LLInventoryGallery::handleKeyHere(KEY key, MASK mask) { deleteSelection(); } + handled = TRUE; break; case KEY_F2: |