fix: Max field in value search not resetting when disabling range search
This commit is contained in:
parent
978558649e
commit
8f83fe5135
@ -740,7 +740,9 @@ namespace hex::plugin::builtin {
|
||||
ImGui::EndDisabled();
|
||||
}
|
||||
|
||||
ImGui::Checkbox("hex.builtin.view.find.value.range"_lang, &settings.range);
|
||||
if (ImGui::Checkbox("hex.builtin.view.find.value.range"_lang, &settings.range)) {
|
||||
settings.inputMax = settings.inputMin;
|
||||
}
|
||||
ImGui::NewLine();
|
||||
|
||||
const std::array<std::string, 10> InputTypes = {
|
||||
|
Loading…
Reference in New Issue
Block a user