diff options
author | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
commit | 089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch) | |
tree | 0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/newview/llviewerwindow.cpp | |
parent | Second Life viewer sources 1.16.0.5 (diff) | |
download | meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2 meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz |
Second Life viewer sources 1.17.0.12
Diffstat (limited to 'linden/indra/newview/llviewerwindow.cpp')
-rw-r--r-- | linden/indra/newview/llviewerwindow.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index c57c84a..0f5bffd 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -1579,8 +1579,6 @@ LLViewerWindow::LLViewerWindow( | |||
1579 | // Can't have spaces in settings.ini strings, so use underscores instead and convert them. | 1579 | // Can't have spaces in settings.ini strings, so use underscores instead and convert them. |
1580 | LLString::replaceChar(mOverlayTitle, '_', ' '); | 1580 | LLString::replaceChar(mOverlayTitle, '_', ' '); |
1581 | 1581 | ||
1582 | gAwayTimer.stop(); | ||
1583 | |||
1584 | LLAlertDialog::setDisplayCallback(alertCallback); // call this before calling any modal dialogs | 1582 | LLAlertDialog::setDisplayCallback(alertCallback); // call this before calling any modal dialogs |
1585 | 1583 | ||
1586 | // sync the keyboard's setting with the saved setting | 1584 | // sync the keyboard's setting with the saved setting |
@@ -1877,6 +1875,7 @@ void LLViewerWindow::initWorldUI() | |||
1877 | 1875 | ||
1878 | gIMView = new LLIMView("gIMView", LLRect() ); | 1876 | gIMView = new LLIMView("gIMView", LLRect() ); |
1879 | gIMView->setFollowsAll(); | 1877 | gIMView->setFollowsAll(); |
1878 | mRootView->addChild(gIMView); | ||
1880 | 1879 | ||
1881 | LLRect morph_view_rect = full_window; | 1880 | LLRect morph_view_rect = full_window; |
1882 | morph_view_rect.stretch( -STATUS_BAR_HEIGHT ); | 1881 | morph_view_rect.stretch( -STATUS_BAR_HEIGHT ); |
@@ -2400,7 +2399,17 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask) | |||
2400 | case KEY_LEFT: | 2399 | case KEY_LEFT: |
2401 | case KEY_RIGHT: | 2400 | case KEY_RIGHT: |
2402 | case KEY_UP: | 2401 | case KEY_UP: |
2402 | // let CTRL UP through for chat line history | ||
2403 | if( MASK_CONTROL & mask ) | ||
2404 | { | ||
2405 | break; | ||
2406 | } | ||
2403 | case KEY_DOWN: | 2407 | case KEY_DOWN: |
2408 | // let CTRL DOWN through for chat line history | ||
2409 | if( MASK_CONTROL & mask ) | ||
2410 | { | ||
2411 | break; | ||
2412 | } | ||
2404 | case KEY_PAGE_UP: | 2413 | case KEY_PAGE_UP: |
2405 | case KEY_PAGE_DOWN: | 2414 | case KEY_PAGE_DOWN: |
2406 | case KEY_HOME: | 2415 | case KEY_HOME: |