mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Add feels-good scaling factor to wheel scroll values.
This commit is contained in:
parent
4795011b12
commit
e793f927fc
@ -200,7 +200,7 @@ Backend::Backend( const char* title, const std::function<void()>& redraw, const
|
|||||||
return EM_TRUE;
|
return EM_TRUE;
|
||||||
} );
|
} );
|
||||||
emscripten_set_wheel_callback( "#canvas", nullptr, EM_TRUE, []( int, const EmscriptenWheelEvent* e, void* ) -> EM_BOOL {
|
emscripten_set_wheel_callback( "#canvas", nullptr, EM_TRUE, []( int, const EmscriptenWheelEvent* e, void* ) -> EM_BOOL {
|
||||||
ImGui::GetIO().AddMouseWheelEvent( -e->deltaX, -e->deltaY );
|
ImGui::GetIO().AddMouseWheelEvent( e->deltaX * -0.05, e->deltaY * -0.05 );
|
||||||
tracy::s_wasActive = true;
|
tracy::s_wasActive = true;
|
||||||
return EM_TRUE;
|
return EM_TRUE;
|
||||||
} );
|
} );
|
||||||
|
Loading…
Reference in New Issue
Block a user