mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Gate the new resizing behavior behind new option
This interferes with resizing plugins using resize handles, and since it only helps with two buggy plugins this seems like the best solution here.
This commit is contained in:
@@ -101,6 +101,12 @@ Configuration::Configuration(const fs::path& config_path,
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else if (key == "editor_coordinate_hack") {
|
||||
if (const auto parsed_value = value.as_boolean()) {
|
||||
editor_coordinate_hack = parsed_value->get();
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else if (key == "editor_force_dnd") {
|
||||
if (const auto parsed_value = value.as_boolean()) {
|
||||
editor_force_dnd = parsed_value->get();
|
||||
|
||||
Reference in New Issue
Block a user