diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-04-21 17:30:06 +0300 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-04-21 17:30:06 +0300 |
commit | 93ea8afeca6b65cfa1549184e952e82e3367c80c (patch) | |
tree | fa35db8cd4ca362519723d10c8b2b4658e3db787 | |
parent | 85e47b0cf058c3999bdcc3ae3cc7585fdefaa581 (diff) |
fixed EXT-6858 Corrupted timestamp for system notification about CAPSLOCK is on
Removed useless sending notification "CapsKeyOn" since it doesn't fit actual design;
reviewed by Vadim Savchuk https://codereview.productengine.com/secondlife/r/277/
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llpanellogin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index ee4dcc44fe..529a368dc3 100644 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -1007,7 +1007,7 @@ void LLPanelLogin::onPassKey(LLLineEditor* caller, void* user_data) { if (gKeyboard->getKeyDown(KEY_CAPSLOCK) && sCapslockDidNotification == FALSE) { - LLNotificationsUtil::add("CapsKeyOn"); +// *TODO: use another way to notify user about enabled caps lock, see EXT-6858 sCapslockDidNotification = TRUE; } } |