diff options
| author | maxim@mnikolenko <maxim@mnikolenko> | 2013-01-10 14:56:33 +0200 | 
|---|---|---|
| committer | maxim@mnikolenko <maxim@mnikolenko> | 2013-01-10 14:56:33 +0200 | 
| commit | 856969285e027def5acba6c252dc65a242349d4f (patch) | |
| tree | ab4e7aac8a0d714ecdd2afa2bbbf9571c2d2ac3a | |
| parent | 830972204912ccb212da3550f31820a6cf343779 (diff) | |
CHUI-658 FIXED Don't highlight whole content of the folder after right clicking if it is flashing.
| -rwxr-xr-x | indra/llui/llfolderviewitem.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index 42e5a6debf..ad18adddd5 100755 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -736,7 +736,7 @@ void LLFolderViewItem::drawHighlight(const BOOL showContent, const BOOL hasKeybo                  getRect().getWidth() - 2,                  0,                  focusOutlineColor, FALSE); -            if (showContent) +            if (showContent && !isFlashing())              {                  gl_rect_2d(FOCUS_LEFT,                      focus_bottom + 1, | 
