UI polish (scrollbar focus, tearoff menus), plus drag and drop fix.

This commit is contained in:
Shyotl
2012-03-04 23:15:53 -06:00
parent 2d75e8fda6
commit d54c86e1df
4 changed files with 14 additions and 14 deletions

View File

@@ -1277,7 +1277,8 @@ BOOL LLTextEditor::handleToolTip(S32 x, S32 y, std::string& msg, LLRect* sticky_
BOOL LLTextEditor::handleScrollWheel(S32 x, S32 y, S32 clicks)
{
// Pretend the mouse is over the scrollbar
return mScrollbar->handleScrollWheel( 0, 0, clicks );
mScrollbar->handleScrollWheel( 0, 0, clicks );
return TRUE;
}
BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask)