impr: Make maximum in-memory file size setting easier to use. Bump value to 512MiB

This commit is contained in:
WerWolv
2025-01-04 13:56:20 +01:00
parent 8da69c11d9
commit f94819351a
5 changed files with 16 additions and 6 deletions

View File

@@ -333,7 +333,7 @@ namespace hex {
bool SliderDataSize::draw(const std::string &name) {
return ImGuiExt::SliderBytes(name.c_str(), &m_value, m_min, m_max);
return ImGuiExt::SliderBytes(name.c_str(), &m_value, m_min, m_max, m_stepSize);
}
void SliderDataSize::load(const nlohmann::json &data) {