summaryrefslogtreecommitdiff
path: root/indra/newview/llbottomtray.cpp
diff options
context:
space:
mode:
authorVadim ProductEngine <vsavchuk@productengine.com>2011-04-12 00:32:24 +0300
committerVadim ProductEngine <vsavchuk@productengine.com>2011-04-12 00:32:24 +0300
commit4a7f69f82008594d5f8d15887917e4b4a85ef587 (patch)
tree4615b289213015c19aa8af9ea591de607f8a285e /indra/newview/llbottomtray.cpp
parente5aaf90bffa7005c0aa872c2084b6d57659d0fee (diff)
STORM-1028 WIP Fixing bottom bar buttons reshaping, tier 11
Typo.
Diffstat (limited to 'indra/newview/llbottomtray.cpp')
-rw-r--r--indra/newview/llbottomtray.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp
index d5d8a27d85..b6482e0ec4 100644
--- a/indra/newview/llbottomtray.cpp
+++ b/indra/newview/llbottomtray.cpp
@@ -1038,23 +1038,23 @@ S32 LLBottomTray::processWidthDecreased(S32 delta_width)
{
bool still_should_be_processed = true;
- const S32 chiclet_panel_shrink_headrom = getChicletPanelShrinkHeadroom();
+ const S32 chiclet_panel_shrink_headroom = getChicletPanelShrinkHeadroom();
// There are four steps of processing width decrease. If in one of them required width was reached,
// further are not needed.
// 1. Decreasing width of chiclet panel.
- if (chiclet_panel_shrink_headrom > 0)
+ if (chiclet_panel_shrink_headroom > 0)
{
// we have some space to decrease chiclet panel
- S32 shrink_by = llmin(-delta_width, chiclet_panel_shrink_headrom);
+ S32 shrink_by = llmin(-delta_width, chiclet_panel_shrink_headroom);
lldebugs << "delta_width: " << delta_width
- << ", panel_delta_min: " << chiclet_panel_shrink_headrom
+ << ", panel_delta_min: " << chiclet_panel_shrink_headroom
<< ", shrink_by: " << shrink_by
<< llendl;
// is chiclet panel wide enough to process resizing?
- delta_width += chiclet_panel_shrink_headrom;
+ delta_width += chiclet_panel_shrink_headroom;
still_should_be_processed = delta_width < 0;