The following method in `imgui-SFML.cpp` is setting the wrong internal variable. Issue identified and corrected in [RahiTuber](https://github.com/ThomasR95/rahituber/blob/275068746b588f5080fb9480bb47fb71262a09b2/RahiTuber/imgui-sfml/imgui-SFML.cpp#L932C1-L936C2). ``` void SetLTriggerAxis(sf::Joystick::Axis lTriggerAxis) { assert(s_currWindowCtx); s_currWindowCtx->rTriggerInfo.axis = lTriggerAxis; } ``` Direct link to method: https://github.com/SFML/imgui-sfml/blob/070d6ab9aa98c997b1fa846175d3faf93de3866e/imgui-SFML.cpp#L754C1-L758C2