properly check checkbox state on callback (#12154)

This commit is contained in:
Shelley Vohr
2018-03-07 00:54:52 -05:00
committed by Charles Kerr
parent 1ddf6188f4
commit d2adedadd3

View File

@@ -188,7 +188,7 @@ void ShowMessageBox(NativeWindow* parent_window,
if (!parent_window || !parent_window->GetNativeWindow() ||
parent_window->is_offscreen_dummy()) {
int ret = [[alert autorelease] runModal];
callback.Run(ret, false);
callback.Run(ret, alert.suppressionButton.state == NSOnState);
} else {
ModalDelegate* delegate = [[ModalDelegate alloc] initWithCallback:callback
andAlert:alert