[Refactor] General reformat and clean-up.

This commit is contained in:
2025-11-24 20:12:10 +00:00
parent 8331fba1e4
commit a58f2e60e5
415 changed files with 4920 additions and 4829 deletions

View File

@@ -329,8 +329,9 @@ public class HexViewPanel : UserControl
foreach(ColorRange range in ColorRanges)
{
for(int i = range.Start; i <= range.End && i < _data.Length; i++)
if(!colorLookup.ContainsKey(i))
colorLookup[i] = range.Color;
{
if(!colorLookup.ContainsKey(i)) colorLookup[i] = range.Color;
}
}
}