| 369 | } |
| 370 | |
| 371 | void NodeEditorApp::pointerReleaseEvent( PointerEvent& event ) |
| 372 | { |
| 373 | if( mImGuiIntegrationContext.handlePointerReleaseEvent( event ) ) |
| 374 | return; |
| 375 | |
| 376 | event.setAccepted(); |
| 377 | } |
| 378 | |
| 379 | void NodeEditorApp::scrollEvent( ScrollEvent& event ) { |
| 380 | if( mImGuiIntegrationContext.handleScrollEvent( event ) ) |
nothing calls this directly
no outgoing calls
no test coverage detected