Skip to content
Snippets Groups Projects
Commit 01a43d0a authored by AlexanderP ProductEngine's avatar AlexanderP ProductEngine
Browse files

CHUI-528, CHUI-536, CHUI-538, CHUI-540 ADD. FIX (Built single processor of...

CHUI-528, CHUI-536, CHUI-538, CHUI-540 ADD. FIX (Built single processor of different types of notifications): changed item's highlighting
parent f3764555
No related branches found
No related tags found
No related merge requests found
......@@ -711,12 +711,17 @@ void LLFolderViewItem::drawHighlight(const BOOL showContent, const BOOL hasKeybo
bg_color.mV[VALPHA] = clamp_rescale(fade_time, 0.f, 0.4f, 0.f, bg_color.mV[VALPHA]);
}
}
gl_rect_2d(FOCUS_LEFT,
focus_top,
getRect().getWidth() - 2,
focus_bottom,
bg_color, hasKeyboardFocus);
if (isHighlightActive())
if (!isHighlightAllowed() || isHighlightActive())
{
gl_rect_2d(FOCUS_LEFT,
focus_top,
getRect().getWidth() - 2,
focus_bottom,
bg_color, hasKeyboardFocus);
}
if (mIsCurSelection)
{
gl_rect_2d(FOCUS_LEFT,
focus_top,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment