summaryrefslogtreecommitdiff
path: root/dw/ui.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2010-04-22 01:30:41 +0000
committercorvid <corvid@lavabit.com>2010-04-22 01:30:41 +0000
commit058a4701d0bef09d21658923e0b4a30e12643b8e (patch)
tree30af5bb95c6fa73c09b3e5394e31329df7ed7843 /dw/ui.cc
parentd20fe82191d472b3073b793aee4508323a95b075 (diff)
move generic tooltip enter/leave to Widget
Technically, Textblock's notifyImpl()s should probably call the Widget one as well. It doesn't matter currently, since we don't look for title attrs on elements that correspond to entire Textblocks.
Diffstat (limited to 'dw/ui.cc')
-rw-r--r--dw/ui.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/dw/ui.cc b/dw/ui.cc
index 7cad6332..058dfde8 100644
--- a/dw/ui.cc
+++ b/dw/ui.cc
@@ -62,11 +62,13 @@ void Embed::sizeAllocateImpl (Allocation *allocation)
void Embed::enterNotifyImpl (core::EventCrossing *event)
{
resource->emitEnter();
+ Widget::enterNotifyImpl(event);
}
void Embed::leaveNotifyImpl (core::EventCrossing *event)
{
resource->emitLeave();
+ Widget::leaveNotifyImpl(event);
}
bool Embed::buttonPressImpl (core::EventButton *event)