diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-02 23:15:38 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-02 23:15:38 +0300 |
commit | 363e9c949bf1179575fafa65d504d04383efbc1e (patch) | |
tree | d5ae7ad286b42c602293f2081969790e9285b035 /indra/newview/llviewerwindow.cpp | |
parent | aaaf3189c400e491c6adc533f8b03dfecddb1dd9 (diff) | |
parent | 1702a65665879d0c68df4c6b4fdb60f815ab7abb (diff) |
Merge branch 'master' into DRTVWR-503-maint
# Conflicts:
# indra/newview/CMakeLists.txt
# indra/newview/viewer_manifest.py
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index b033435de7..6ddd661b2a 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -5122,6 +5122,14 @@ void LLViewerWindow::revealIntroPanel() } } +void LLViewerWindow::initTextures(S32 location_id) +{ + if (mProgressView) + { + mProgressView->initTextures(location_id, LLGridManager::getInstance()->isInProductionGrid()); + } +} + void LLViewerWindow::setShowProgress(const BOOL show) { if (mProgressView) @@ -5175,7 +5183,6 @@ void LLViewerWindow::setProgressCancelButtonVisible( BOOL b, const std::string& } } - LLProgressView *LLViewerWindow::getProgressView() const { return mProgressView; |