Ugh, forgot to check this in quite a while ago:

If the view doesn't have a tool tip, pass the B_MOUSE_IDLE to the next handler,
so the parent view can show a tool tip. This makes tool tips in a column list
view possible (or at least reasonably easy).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33902 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-11-05 17:29:32 +00:00
parent be350af3d9
commit 76d24e95aa
+2
View File
@@ -4185,6 +4185,8 @@ BView::MessageReceived(BMessage* msg)
BToolTip* tip;
if (GetToolTipAt(where, &tip))
ShowToolTip(tip);
else
BHandler::MessageReceived(msg);
break;
}