diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-08-14 21:06:31 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-08-14 21:28:06 +0300 |
commit | 479618097b14c477413086d6a2d4f40a411556ad (patch) | |
tree | c78493fafc0166efe5c67d220d1f777f5fced81b /indra/newview/llfloaterimagepreview.cpp | |
parent | d859557c1865b0636ce2a407d2e7b814fbfc1eb6 (diff) |
#4541 Fix reused message
it was also in use by local bitmaps
Diffstat (limited to 'indra/newview/llfloaterimagepreview.cpp')
-rw-r--r-- | indra/newview/llfloaterimagepreview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterimagepreview.cpp b/indra/newview/llfloaterimagepreview.cpp index 44e71e33f3..550c3adc27 100644 --- a/indra/newview/llfloaterimagepreview.cpp +++ b/indra/newview/llfloaterimagepreview.cpp @@ -433,7 +433,7 @@ bool LLFloaterImagePreview::loadImage(const std::string& src_filename) LLStringUtil::format_map_t args; args["PIXELS"] = llformat("%dM", (S32)(MAX_IMAGE_AREA / 1000000)); - mImageLoadError = LLTrans::getString("texture_load_dimensions_error", args); + mImageLoadError = LLTrans::getString("texture_load_area_error", args); return false; } |