1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-11-08 05:30:05 +01:00

🐛 Fix issue with tertiary action

This commit is contained in:
2022-05-09 23:01:36 +02:00
parent af922664ab
commit b82811e6bf

View File

@@ -65,7 +65,7 @@ class BetterAlertVC: NSViewController {
} }
@IBAction func tertiaryButtonAction(_ sender: Any) { @IBAction func tertiaryButtonAction(_ sender: Any) {
if self.actionSecondary != nil { if self.actionTertiary != nil {
self.actionTertiary!(self) self.actionTertiary!(self)
} }
} }