Skip to content
Snippets Groups Projects
Commit 594d2618 authored by Richard Linden's avatar Richard Linden
Browse files

fixed crash in accordionctrl

parent f56bc6c0
No related branches found
No related tags found
No related merge requests found
...@@ -974,7 +974,7 @@ BOOL LLAccordionCtrlTab::handleScrollWheel ( S32 x, S32 y, S32 clicks ) ...@@ -974,7 +974,7 @@ BOOL LLAccordionCtrlTab::handleScrollWheel ( S32 x, S32 y, S32 clicks )
{ {
return TRUE; return TRUE;
} }
if( mScrollbar->getVisible() && mScrollbar->handleScrollWheel( 0, 0, clicks ) ) if( mScrollbar && mScrollbar->getVisible() && mScrollbar->handleScrollWheel( 0, 0, clicks ) )
{ {
return TRUE; return TRUE;
} }
......
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