Toolbar buttons don't respond to touch when a Navigation Drawer is open

Seems that touch event is stolen by the shadow of the drawer, i.e DrawerLayout keeps intercepting the touch events, because Toolbar is part of the content view, unlike the ActionBar being on top of the decor view.

Possible work around is intercepting the touch event:

If it s between 0 (top) and Toolbar height (bottom), dispatch the event directly to the Toolbar object. Otherwise keep the normal behaviour.

Is same case for drawer toggle clicks?