aboutsummaryrefslogtreecommitdiff
path: root/logic/database.gd
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-04-04 10:02:13 +0000
committerdam <dam@gudinoff>2022-04-04 10:02:13 +0000
commitf40df1987a35adbc234a1b04b018d92d420b1e92 (patch)
treefbe2ef81b7aaf16a4a75259a9e09d2361de066ba /logic/database.gd
parent2599637e95cf5702711ac60d74dd6259c549796f (diff)
downloadsurgery-log-f40df1987a35adbc234a1b04b018d92d420b1e92.tar.zst
surgery-log-f40df1987a35adbc234a1b04b018d92d420b1e92.zip
Replaced icons and simplified dialog button labels.
Diffstat (limited to 'logic/database.gd')
-rw-r--r--logic/database.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/database.gd b/logic/database.gd
index f3a5928..ed39d43 100644
--- a/logic/database.gd
+++ b/logic/database.gd
@@ -75,7 +75,7 @@ func delete_action():
if selected_idx < 0:
return
- dialog.setup("The entry with process ID '%s' will be deleted from the database." % db[selected_idx].process_id, "Yes, delete", "No")
+ dialog.setup("The entry with process ID '%s' will be deleted from the database." % db[selected_idx].process_id, "Delete", "No")
dialog.connect("accepted", self, "delete_action_confirmed")
popup.open_popup("Delete entry?", dialog)