| 359 | } |
| 360 | |
| 361 | bool Workspace::onCopy(Context* ctx) |
| 362 | { |
| 363 | WorkspaceView* view = activeView(); |
| 364 | InputChainElement* activeElement = (view ? view->onGetInputChainElement(): nullptr); |
| 365 | if (activeElement) |
| 366 | return activeElement->onCopy(ctx); |
| 367 | else |
| 368 | return false; |
| 369 | } |
| 370 | |
| 371 | bool Workspace::onPaste(Context* ctx) |
| 372 | { |
nothing calls this directly
no test coverage detected