| 784 | } |
| 785 | |
| 786 | void BaseWorkspace::SendWindowsKey(unsigned long vk, bool down) { |
| 787 | if (game_view_) { |
| 788 | game_view_->SendKeyEvent(vk, down); |
| 789 | } |
| 790 | } |
| 791 | |
| 792 | void BaseWorkspace::resizeEvent(QResizeEvent *event) { |
| 793 | main_progress_->setGeometry(0, title_bar_height_, event->size().width(), event->size().height()); |
nothing calls this directly
no test coverage detected