properly check checkbox state on callback (#11658)

This commit is contained in:
shelley vohr 2018-01-17 08:51:49 -05:00 committed by GitHub
parent 4dab824c6b
commit 4f0e1826e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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