Allow default audio bus layout modification
This commit is contained in:
parent
e16fc72cef
commit
650b698f51
4 changed files with 18 additions and 8 deletions
|
|
@ -496,7 +496,8 @@ void DependencyRemoveDialog::ok_pressed() {
|
|||
res->set_path("");
|
||||
}
|
||||
|
||||
// If the file we are deleting for e.g. the main scene or default environment, we must clear its definition in Project Settings.
|
||||
// If the file we are deleting for e.g. the main scene, default environment,
|
||||
// or audio bus layout, we must clear its definition in Project Settings.
|
||||
if (files_to_delete[i] == ProjectSettings::get_singleton()->get("application/config/icon")) {
|
||||
ProjectSettings::get_singleton()->set("application/config/icon", "");
|
||||
}
|
||||
|
|
@ -518,6 +519,9 @@ void DependencyRemoveDialog::ok_pressed() {
|
|||
if (files_to_delete[i] == ProjectSettings::get_singleton()->get("gui/theme/custom_font")) {
|
||||
ProjectSettings::get_singleton()->set("gui/theme/custom_font", "");
|
||||
}
|
||||
if (files_to_delete[i] == ProjectSettings::get_singleton()->get("audio/default_bus_layout")) {
|
||||
ProjectSettings::get_singleton()->set("audio/default_bus_layout", "");
|
||||
}
|
||||
|
||||
String path = OS::get_singleton()->get_resource_dir() + files_to_delete[i].replace_first("res://", "/");
|
||||
print_verbose("Moving to trash: " + path);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue