summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerwindow.cpp
diff options
context:
space:
mode:
authorDon Kjer <don@lindenlab.com>2011-02-19 02:21:51 +0000
committerDon Kjer <don@lindenlab.com>2011-02-19 02:21:51 +0000
commitb5e843abb59ac32cb8cd85dc4b1a43f2bb5c22ee (patch)
tree9d6046422e42cd4177b7787df4a3705ebb61b495 /indra/newview/llviewerwindow.cpp
parent64ea40066f16920a82c4396ac38d83bb6701f70d (diff)
Fix for more instances of dereferencing gKeyboard in headless client.
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r--indra/newview/llviewerwindow.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 336915ac8c..2d6fabf611 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -2973,7 +2973,13 @@ void LLViewerWindow::updateLayout()
}
// Update the location of the blue box tool popup
LLCoordGL select_center_screen;
- gFloaterTools->updatePopup( select_center_screen, gKeyboard->currentMask(TRUE) );
+ MASK mask = MASK_NONE;
+ // *TODO: Create a headless gKeyboard DK 2011-02-18
+ if (gKeyboard)
+ {
+ mask = gKeyboard->currentMask(TRUE);
+ }
+ gFloaterTools->updatePopup( select_center_screen, mask );
}
else
{
@@ -3099,7 +3105,13 @@ void LLViewerWindow::updateKeyboardFocus()
// sync all floaters with their focus state
gFloaterView->highlightFocusedFloater();
gSnapshotFloaterView->highlightFocusedFloater();
- if ((gKeyboard->currentMask(TRUE) & MASK_CONTROL) == 0)
+ MASK mask = MASK_NONE;
+ // *TODO: Create a headless gKeyboard DK 2011-02-18
+ if (gKeyboard)
+ {
+ mask = gKeyboard->currentMask(TRUE);
+ }
+ if ((mask & MASK_CONTROL) == 0)
{
// control key no longer held down, finish cycle mode
gFloaterView->setCycleMode(FALSE);