| 406 | } |
| 407 | |
| 408 | void PreviewEditorWindow::onStateChanged(Editor* editor) |
| 409 | { |
| 410 | // Sync editor playing state with MiniPlayButton state |
| 411 | if (m_playButton->isPlaying() != editor->isPlaying()) |
| 412 | m_playButton->setPlaying(editor->isPlaying()); |
| 413 | } |
| 414 | |
| 415 | void PreviewEditorWindow::onScrollChanged(Editor* miniEditor) |
| 416 | { |
nothing calls this directly
no test coverage detected