diff options
author | Dave Parks <davep@lindenlab.com> | 2023-02-10 12:46:16 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-02-10 12:46:16 -0600 |
commit | 2fc0694a33bdadd49e1b0b6022d173546610d889 (patch) | |
tree | b3caf244d6ddf3a31214e0b671d017deb1592079 /indra | |
parent | 58e24f06cd14cca7cdb7c9e2fe05b4c746cad264 (diff) |
SL-18122 Fix for HUD text disappearing.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewertexture.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 721498572f..578deb8b3f 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1904,18 +1904,12 @@ bool LLViewerFetchedTexture::updateFetch() { mIsFetching = FALSE; mLastFetchState = -1; - setDebugText(""); mLastPacketTimer.reset(); } else { mFetchState = LLAppViewer::getTextureFetch()->getFetchState(mID, mDownloadProgress, mRequestedDownloadPriority, mFetchPriority, mFetchDeltaTime, mRequestDeltaTime, mCanUseHTTP); - /*if (mFetchState != mLastFetchState) - { - setDebugText(LLTextureFetch::getStateString(mFetchState)); - mLastFetchState = mFetchState; - }*/ } // We may have data ready regardless of whether or not we are finished (e.g. waiting on write) |