| 2302 | } |
| 2303 | |
| 2304 | bool lf_mouse_button_changed(uint32_t button) { |
| 2305 | return state.input.mouse.buttons_current[button] != state.input.mouse.buttons_last[button]; |
| 2306 | } |
| 2307 | |
| 2308 | bool lf_mouse_button_went_down_on_div(uint32_t button) { |
| 2309 | return lf_mouse_button_went_down(button) && state.scrollbar_div.id == state.current_div.id; |
no outgoing calls
no test coverage detected