Fix #7927: Incorrect resolution shown in "Huge screenshot" query window. (#7949)

This commit is contained in:
JMcKiern 2020-01-18 22:05:51 +00:00 committed by Niels Martin Hansen
parent 3b177af826
commit 6dfe5c852e
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "window_gui.h"
#include "screenshot.h"
#include "textbuf_gui.h"
#include "strings_func.h"
#include "widgets/screenshot_widget.h"
@ -57,6 +58,8 @@ struct ScreenshotWindow : Window {
if ((uint64)vp.width * (uint64)vp.height > 8192 * 8192) {
/* Ask for confirmation */
_screenshot_type = st;
SetDParam(0, vp.width);
SetDParam(1, vp.height);
ShowQuery(STR_WARNING_SCREENSHOT_SIZE_CAPTION, STR_WARNING_SCREENSHOT_SIZE_MESSAGE, nullptr, ScreenshotConfirmationCallback);
}
else {