| 1543 | } |
| 1544 | |
| 1545 | void MainWindow::AsyncSetTitle(std::string_view windowTitle) |
| 1546 | { |
| 1547 | wxCommandEvent set_title_event(wxEVT_SET_WINDOW_TITLE); |
| 1548 | set_title_event.SetString(wxHelper::FromUtf8(windowTitle)); |
| 1549 | g_mainFrame->QueueEvent(set_title_event.Clone()); |
| 1550 | } |
| 1551 | |
| 1552 | void MainWindow::CreateCanvas() |
| 1553 | { |
no test coverage detected