| 2238 | } |
| 2239 | |
| 2240 | void MainWindow::onLanguageChanged() |
| 2241 | { |
| 2242 | // reopen settings dialog after it applies |
| 2243 | updateLanguage(); |
| 2244 | // If you doSettings now, on macOS, the window will somehow end up underneath the main window that was created above |
| 2245 | // Delay it slightly... |
| 2246 | QtHost::RunOnUIThread([] { |
| 2247 | g_main_window->doSettings("Interface"); |
| 2248 | }); |
| 2249 | } |
| 2250 | |
| 2251 | void MainWindow::onInputRecNewActionTriggered() |
| 2252 | { |
nothing calls this directly
no test coverage detected