diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-11-04 22:17:14 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-11-04 22:17:33 +0200 |
commit | 842d84b8ecdcf11baa603a48c957e68459a69d15 (patch) | |
tree | 032403d4bd886d7dd28cf32535318fda3974321a /indra | |
parent | 5e7a0a963e3549ee61339111b7dfce6b6420d0bc (diff) |
Fix for RelWithDebInfoOS build
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llprogressview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llprogressview.cpp b/indra/newview/llprogressview.cpp index 3e3ab3a676..416848f9af 100644 --- a/indra/newview/llprogressview.cpp +++ b/indra/newview/llprogressview.cpp @@ -431,9 +431,10 @@ void LLProgressView::initLogos() // 108x41 icon_width = 74; + icon_height = default_height; loadLogo(temp_str + "vivox_logo.png", image_codec, - LLRect(texture_start_x, texture_start_y + default_height, texture_start_x + icon_width, texture_start_y), + LLRect(texture_start_x, texture_start_y + icon_height, texture_start_x + icon_width, texture_start_y), default_clip, default_clip); } |