diff options
| author | dam <dam@gudinoff> | 2022-04-02 08:49:21 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2022-04-02 08:49:21 +0000 |
| commit | b12fe534ae3f2aea74f8c8506b3ad2fea321227c (patch) | |
| tree | 47afc50dcf418ca13b53da8eb1e5ef660ca44d8a /logic/stage.gd | |
| parent | 8491abc4805cee3b2dfb74817ef8908df085c5cf (diff) | |
| download | surgery-log-b12fe534ae3f2aea74f8c8506b3ad2fea321227c.tar.zst surgery-log-b12fe534ae3f2aea74f8c8506b3ad2fea321227c.zip | |
Improved modal dialog messages.
Diffstat (limited to 'logic/stage.gd')
| -rw-r--r-- | logic/stage.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/stage.gd b/logic/stage.gd index ef9ce3d..33b0644 100644 --- a/logic/stage.gd +++ b/logic/stage.gd @@ -108,7 +108,7 @@ func save_action(): func discard_action(): if get_stage().hash() != staged_entry_hash: - dialog.setup("Do you want to discard the changes made?", "Yes, discard", "No") + dialog.setup("Changes made to this entry will be discarded.", "Yes, discard", "No") dialog.connect("accepted", self, "discard_action_confirmed") popup.open_popup("Discard changes?", dialog) else: |
