You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fixed issues with adding custom project settings and added confirmation dialog when deleting settings.
This commit is contained in:
@@ -113,11 +113,17 @@ void ProjectSettingsEditor::_add_setting() {
|
||||
inspector->set_current_section(setting.get_slice("/", 1));
|
||||
}
|
||||
|
||||
void ProjectSettingsEditor::_delete_setting() {
|
||||
void ProjectSettingsEditor::_delete_setting(bool p_confirmed) {
|
||||
String setting = _get_setting_name();
|
||||
Variant value = ps->get(setting);
|
||||
int order = ps->get_order(setting);
|
||||
|
||||
if (!p_confirmed) {
|
||||
del_confirmation->set_text(vformat(TTR("Are you sure you want to delete '%s'?"), setting));
|
||||
del_confirmation->popup_centered();
|
||||
return;
|
||||
}
|
||||
|
||||
undo_redo->create_action(TTR("Delete Item"));
|
||||
|
||||
undo_redo->add_do_method(ps, "clear", setting);
|
||||
@@ -394,7 +400,7 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
|
||||
|
||||
del_button = memnew(Button);
|
||||
del_button->set_flat(true);
|
||||
del_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_delete_setting));
|
||||
del_button->connect("pressed", callable_mp(this, &ProjectSettingsEditor::_delete_setting), varray(false));
|
||||
hbc->add_child(del_button);
|
||||
|
||||
error_label = memnew(Label);
|
||||
@@ -466,6 +472,10 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
|
||||
timer->set_one_shot(true);
|
||||
add_child(timer);
|
||||
|
||||
del_confirmation = memnew(ConfirmationDialog);
|
||||
del_confirmation->connect("confirmed", callable_mp(this, &ProjectSettingsEditor::_delete_setting), varray(true));
|
||||
add_child(del_confirmation);
|
||||
|
||||
get_ok()->set_text(TTR("Close"));
|
||||
set_hide_on_ok(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user