1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Reverted a recent linux sub-window event change.

This commit is contained in:
jules 2015-03-23 12:18:22 +00:00
parent 3825467af7
commit 8ce3099d93

View file

@ -2321,12 +2321,11 @@ private:
{}
}
int getAllEventsMask() const noexcept
static int getAllEventsMask() noexcept
{
return NoEventMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask
| EnterWindowMask | LeaveWindowMask | PointerMotionMask | KeymapStateMask
| ExposureMask | FocusChangeMask
| (parentWindow != 0 ? SubstructureNotifyMask : StructureNotifyMask);
| ExposureMask | StructureNotifyMask | FocusChangeMask;
}
template <typename EventType>