fix: Windows checkboxChecked edge case (#21852)
This commit is contained in:
parent
fbc2f8344f
commit
11804dfe2f
1 changed files with 1 additions and 2 deletions
|
@ -183,8 +183,7 @@ DialogResult ShowTaskDialogUTF16(NativeWindow* parent,
|
|||
else
|
||||
button_id = cancel_id;
|
||||
|
||||
return std::make_pair(button_id,
|
||||
checkbox_checked ? verificationFlagChecked : false);
|
||||
return std::make_pair(button_id, verificationFlagChecked);
|
||||
}
|
||||
|
||||
DialogResult ShowTaskDialogUTF8(const MessageBoxSettings& settings) {
|
||||
|
|
Loading…
Reference in a new issue