Browse Source

Mouse up/down events from entry_sdl.cpp incorrectly have mouse z (scroll_z) set to zero (#1404)

OswaldHurlem 7 years ago
parent
commit
ff34c8c37d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/common/entry/entry_sdl.cpp

+ 1 - 1
examples/common/entry/entry_sdl.cpp

@@ -561,7 +561,7 @@ namespace entry
 								m_eventQueue.postMouseEvent(handle
 									, mev.x
 									, mev.y
-									, 0
+									, m_mz
 									, button
 									, mev.type == SDL_MOUSEBUTTONDOWN
 									);