Added handling of mouse wheel events to ImGuiWrapper

This commit is contained in:
enricoturri1966 2020-07-27 12:18:21 +02:00
parent 710e6b08f4
commit 18594261d2
2 changed files with 8 additions and 0 deletions

View file

@ -3300,6 +3300,11 @@ void GLCanvas3D::on_mouse_wheel(wxMouseEvent& evt)
if (evt.MiddleIsDown())
return;
if (wxGetApp().imgui()->update_mouse_data(evt)) {
m_dirty = true;
return;
}
#if ENABLE_RETINA_GL
const float scale = m_retina_helper->get_scale_factor();
evt.SetX(evt.GetX() * scale);