Rename vst3_no_scaling to editor_disable_host_scaling

This will also affect CLAP plugins.
This commit is contained in:
Robbert van der Helm
2022-10-01 00:34:34 +02:00
parent 82840ab6df
commit 1b875ad286
6 changed files with 47 additions and 32 deletions
+6 -6
View File
@@ -107,6 +107,12 @@ Configuration::Configuration(const fs::path& config_path,
} else {
invalid_options.emplace_back(key);
}
} else if (key == "editor_disable_host_scaling") {
if (const auto parsed_value = value.as_boolean()) {
editor_disable_host_scaling = parsed_value->get();
} else {
invalid_options.emplace_back(key);
}
} else if (key == "editor_force_dnd") {
if (const auto parsed_value = value.as_boolean()) {
editor_force_dnd = parsed_value->get();
@@ -136,12 +142,6 @@ Configuration::Configuration(const fs::path& config_path,
} else {
invalid_options.emplace_back(key);
}
} else if (key == "vst3_no_scaling") {
if (const auto parsed_value = value.as_boolean()) {
vst3_no_scaling = parsed_value->get();
} else {
invalid_options.emplace_back(key);
}
} else if (key == "vst3_prefer_32bit") {
if (const auto parsed_value = value.as_boolean()) {
vst3_prefer_32bit = parsed_value->get();