| 359 | } |
| 360 | |
| 361 | void NodeEditorApp::pointerPressEvent( PointerEvent& event ) |
| 362 | { |
| 363 | if( mImGuiIntegrationContext.handlePointerPressEvent( event ) ) |
| 364 | return; |
| 365 | if( !event.isPrimary() || !(event.pointer() & Pointer::MouseLeft) ) |
| 366 | return; |
| 367 | |
| 368 | event.setAccepted(); |
| 369 | } |
| 370 | |
| 371 | void NodeEditorApp::pointerReleaseEvent( PointerEvent& event ) |
| 372 | { |
nothing calls this directly
no outgoing calls
no test coverage detected