diff options
author | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-05-22 15:05:56 +0800 |
---|---|---|
committer | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-05-22 15:05:56 +0800 |
commit | f523d4f16fa0df9bcc7ff33624b2d5814b56c965 (patch) | |
tree | 6dfc51f2e3a73431f8ce083206a47876d14737e4 /doc | |
parent | ce00392fc35ce639752c710094d87a4311985fb2 (diff) | |
download | redot-engine-f523d4f16fa0df9bcc7ff33624b2d5814b56c965.tar.gz |
Fix confusing descriptions of ConfirmationDialog's description.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/ConfirmationDialog.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/ConfirmationDialog.xml b/doc/classes/ConfirmationDialog.xml index 8fa5dac7bf..5cdff076bd 100644 --- a/doc/classes/ConfirmationDialog.xml +++ b/doc/classes/ConfirmationDialog.xml @@ -8,10 +8,10 @@ To get cancel action, you can use: [codeblocks] [gdscript] - get_cancel_button().pressed.connect(self.canceled) + get_cancel_button().pressed.connect(_on_canceled) [/gdscript] [csharp] - GetCancelButton().Pressed += Canceled; + GetCancelButton().Pressed += OnCanceled; [/csharp] [/codeblocks] </description> |