1
0
mirror of synced 2025-01-11 05:42:15 +01:00

fix: ASCII column not getting highlighted anymore

This commit is contained in:
WerWolv 2025-01-06 20:14:27 +01:00
parent d8c3d67dfe
commit 96ef983cfb

View File

@ -788,6 +788,8 @@ namespace hex::ui {
// Draw highlights and selection // Draw highlights and selection
if (backgroundColor.has_value()) { if (backgroundColor.has_value()) {
this->drawBackgroundHighlight(cellStartPos, asciiCellSize, backgroundColor.value());
this->drawSelection(x, y, selection, byteAddress, 1, cellStartPos, asciiCellSize, ImGui::GetStyleColorVec4(ImGuiCol_Text)); this->drawSelection(x, y, selection, byteAddress, 1, cellStartPos, asciiCellSize, ImGui::GetStyleColorVec4(ImGuiCol_Text));
} }
@ -888,6 +890,8 @@ namespace hex::ui {
// Draw highlights and selection // Draw highlights and selection
if (backgroundColor.has_value()) { if (backgroundColor.has_value()) {
this->drawBackgroundHighlight(cellStartPos, cellSize, backgroundColor.value());
this->drawSelection(x, y, selection, address, 1, cellStartPos, cellSize, ImGui::GetStyleColorVec4(ImGuiCol_Text)); this->drawSelection(x, y, selection, address, 1, cellStartPos, cellSize, ImGui::GetStyleColorVec4(ImGuiCol_Text));
} }