| 301 | } |
| 302 | |
| 303 | void Workspace::onNewInputPriority(InputChainElement* newElement) |
| 304 | { |
| 305 | WorkspaceView* view = activeView(); |
| 306 | InputChainElement* activeElement = (view ? view->onGetInputChainElement(): nullptr); |
| 307 | if (activeElement) |
| 308 | activeElement->onNewInputPriority(newElement); |
| 309 | } |
| 310 | |
| 311 | bool Workspace::onCanCut(Context* ctx) |
| 312 | { |
nothing calls this directly
no test coverage detected