mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
fix: Separator stride setting displaying incorrect values
This commit is contained in:
@@ -1063,8 +1063,8 @@ namespace hex::ui {
|
||||
m_encodingLineStartAddresses.clear();
|
||||
}
|
||||
{
|
||||
const auto min = 0;
|
||||
const auto max = m_provider->getActualSize();
|
||||
const u64 min = 0;
|
||||
const u64 max = m_provider->getActualSize();
|
||||
ImGui::SliderScalar("##separator_stride", ImGuiDataType_U64, &m_separatorStride, &min, &max, m_separatorStride == 0 ? "hex.ui.hex_editor.no_separator"_lang : hex::format("hex.ui.hex_editor.separator_stride"_lang, m_separatorStride).c_str());
|
||||
}
|
||||
ImGui::EndPopup();
|
||||
|
||||
Reference in New Issue
Block a user