summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r--indra/newview/llviewerwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 44d9a72868..71406d268d 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -2450,9 +2450,11 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
}
}
- // Debugging view for unified notifications
+ // Debugging view for unified notifications -- we need Ctrl+Shift+Alt to get it
+ // since Ctrl+Shift maps to Nighttime under windlight.
if ((MASK_SHIFT & mask)
&& (MASK_CONTROL & mask)
+ && (MASK_ALT & mask)
&& ('N' == key || 'n' == key))
{
LLFloaterNotificationConsole::showInstance();