diff options
Diffstat (limited to 'menu')
| -rw-r--r-- | menu/menu.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/menu/menu.gd b/menu/menu.gd index 6bb5de0..5f13949 100644 --- a/menu/menu.gd +++ b/menu/menu.gd @@ -69,7 +69,7 @@ func export_option_sets_action(): func clear_option_sets_action(): - dialog.setup("All option sets from the dropdown menus will be deleted.", "Yes, delete.", "No") + dialog.setup("All option sets from the dropdown menus will be deleted.", "Delete all", "No") dialog.connect("accepted", stage, "clear_option_sets") popup.open_popup("Clear option sets?", dialog) @@ -85,7 +85,7 @@ func export_data_action(): func clear_data_action(): - dialog.setup("All entries from the database will be deleted.", "Yes, delete.", "No") + dialog.setup("All entries from the database will be deleted.", "Delete all", "No") dialog.connect("accepted", database, "clear_database") popup.open_popup("Clear database?", dialog) |
