From 76d24e95aa29ef07ca8a8f02cfb925b0fd820284 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 5 Nov 2009 17:29:32 +0000 Subject: [PATCH] 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 --- src/kits/interface/View.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/kits/interface/View.cpp b/src/kits/interface/View.cpp index e92eddf75c..c9e65f6c2c 100644 --- a/src/kits/interface/View.cpp +++ b/src/kits/interface/View.cpp @@ -4185,6 +4185,8 @@ BView::MessageReceived(BMessage* msg) BToolTip* tip; if (GetToolTipAt(where, &tip)) ShowToolTip(tip); + else + BHandler::MessageReceived(msg); break; }