| 135 | } |
| 136 | |
| 137 | void ApplicationEditor::setWindowless(int width, int height) { |
| 138 | canvas_->removeFromWindow(); |
| 139 | window_ = nullptr; |
| 140 | setBounds(0, 0, width, height); |
| 141 | canvas_->setWindowless(width, height); |
| 142 | drawWindow(); |
| 143 | } |
| 144 | |
| 145 | void ApplicationEditor::removeFromWindow() { |
| 146 | window_event_handler_ = nullptr; |
no test coverage detected