mirror of https://github.com/WerWolv/ImHex.git
fix: Ranges found by find view not being highlighted
This commit is contained in:
parent
f57d4f2f7a
commit
df75218ecb
|
@ -1 +1 @@
|
||||||
Subproject commit 433d2303310b53bbe805eb2dc4c6c92bf230d791
|
Subproject commit 49489507989d767d131342cf3e2c192288cecf14
|
|
@ -44,7 +44,7 @@ namespace hex::plugin::builtin {
|
||||||
protected:
|
protected:
|
||||||
bool m_dataValid = false;
|
bool m_dataValid = false;
|
||||||
size_t m_dataSize = 0x00;
|
size_t m_dataSize = 0x00;
|
||||||
wolv::container::IntervalTree<std::vector<u8>, u64, 0> m_data;
|
wolv::container::IntervalTree<std::vector<u8>, u64> m_data;
|
||||||
|
|
||||||
std::fs::path m_sourceFilePath;
|
std::fs::path m_sourceFilePath;
|
||||||
};
|
};
|
||||||
|
|
|
@ -95,7 +95,7 @@ namespace hex::plugin::builtin {
|
||||||
|
|
||||||
} m_searchSettings, m_decodeSettings;
|
} m_searchSettings, m_decodeSettings;
|
||||||
|
|
||||||
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64, 0>;
|
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64>;
|
||||||
|
|
||||||
PerProvider<std::vector<Occurrence>> m_foundOccurrences, m_sortedOccurrences;
|
PerProvider<std::vector<Occurrence>> m_foundOccurrences, m_sortedOccurrences;
|
||||||
PerProvider<OccurrenceTree> m_occurrenceTree;
|
PerProvider<OccurrenceTree> m_occurrenceTree;
|
||||||
|
|
Loading…
Reference in New Issue