We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d272b commit b5b68baCopy full SHA for b5b68ba
1 file changed
src/qt/qt_settings.cpp
@@ -297,6 +297,8 @@ Settings::accept()
297
return;
298
}
299
} else if (changed && !(changed & SETTINGS_REQUIRE_HARD_RESET) && !settings_only) {
300
+ const int currentPause = dopause;
301
+ plat_pause(1);
302
save();
303
config_changed = 2;
304
main_window->emitVmmSignal();
@@ -311,6 +313,7 @@ Settings::accept()
311
313
if (monitors[i].target_buffer)
312
314
video_force_resize_set_monitor(1, i);
315
316
+ plat_pause(currentPause);
317
318
/* Reject so the main window does nothing. */
319
QDialog::reject();
0 commit comments