| 349 | } |
| 350 | |
| 351 | bool Workspace::onCut(Context* ctx) |
| 352 | { |
| 353 | WorkspaceView* view = activeView(); |
| 354 | InputChainElement* activeElement = (view ? view->onGetInputChainElement(): nullptr); |
| 355 | if (activeElement) |
| 356 | return activeElement->onCut(ctx); |
| 357 | else |
| 358 | return false; |
| 359 | } |
| 360 | |
| 361 | bool Workspace::onCopy(Context* ctx) |
| 362 | { |
nothing calls this directly
no test coverage detected