diff options
author | McCabe Maxsted | 2009-09-09 16:57:26 -0700 |
---|---|---|
committer | McCabe Maxsted | 2009-09-09 16:57:26 -0700 |
commit | 287284331af10af8a55914d00b2c61d5fd40642f (patch) | |
tree | d6a901309f9dc6cfa492dc6cd5e34e9972dfd42e /linden/indra/newview/lltexturectrl.cpp | |
parent | Removed old comment (diff) | |
download | meta-impy-287284331af10af8a55914d00b2c61d5fd40642f.zip meta-impy-287284331af10af8a55914d00b2c61d5fd40642f.tar.gz meta-impy-287284331af10af8a55914d00b2c61d5fd40642f.tar.bz2 meta-impy-287284331af10af8a55914d00b2c61d5fd40642f.tar.xz |
Applied ReinstateShowTextureUUID Cool Viewer patch (reverts the fix for VWR-1919)
Diffstat (limited to 'linden/indra/newview/lltexturectrl.cpp')
-rw-r--r-- | linden/indra/newview/lltexturectrl.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/newview/lltexturectrl.cpp b/linden/indra/newview/lltexturectrl.cpp index be0b8eb..71135d7 100644 --- a/linden/indra/newview/lltexturectrl.cpp +++ b/linden/indra/newview/lltexturectrl.cpp | |||
@@ -349,6 +349,13 @@ void LLFloaterTexturePicker::updateImageStats() | |||
349 | { | 349 | { |
350 | mResolutionLabel->setTextArg("[DIMENSIONS]", std::string("[? x ?]")); | 350 | mResolutionLabel->setTextArg("[DIMENSIONS]", std::string("[? x ?]")); |
351 | } | 351 | } |
352 | if (gAgent.isGodlike()) | ||
353 | { | ||
354 | std::string tstring = "Pick: "; | ||
355 | std::string image_id_string = mTexturep->getID().asString(); | ||
356 | tstring = tstring + image_id_string.replace(24, 35, 12, '*'); // hide last segment to discourage theft | ||
357 | setTitle(tstring); | ||
358 | } | ||
352 | } | 359 | } |
353 | } | 360 | } |
354 | 361 | ||