call on cancel when x a dialog

This commit is contained in:
Adam D. Ruppe 2023-02-05 21:28:39 -05:00
parent 1793d8e43b
commit 079cf341a9
1 changed files with 5 additions and 0 deletions

View File

@ -14999,6 +14999,11 @@ class AutomaticDialog(T) : Dialog {
}
});
this.addEventListener((scope ClosedEvent ce) {
if(onCancel)
onCancel();
});
//this.children[0].focus();
}