| 551 | } |
| 552 | |
| 553 | std::shared_ptr<ProcessorWindow> App::getCurrentWindow(Thread::ThreadID tid) { |
| 554 | if (auto proc = getCurrentWindowProcInternal(tid)) { |
| 555 | return proc->getEditorWindow(); |
| 556 | } |
| 557 | return nullptr; |
| 558 | } |
| 559 | |
| 560 | void App::moveEditor(Thread::ThreadID tid, int x, int y) { |
| 561 | traceScope(); |
nothing calls this directly
no test coverage detected