| 197 | } |
| 198 | |
| 199 | void handle_pointer_button(const wlr_pointer_button_event& event) override |
| 200 | { |
| 201 | if (event.state != WL_POINTER_BUTTON_STATE_RELEASED) |
| 202 | { |
| 203 | return; |
| 204 | } |
| 205 | |
| 206 | drag_helper->handle_input_released(); |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | void handle_pointer_motion(wf::pointf_t pointer_position, uint32_t time_ms) override |
| 211 | { |
nothing calls this directly
no test coverage detected