Fixed stale scene bug in hex viewer

This commit is contained in:
Nav
2023-05-07 16:33:53 +01:00
parent e6d290f866
commit 7bdc03116e

View File

@@ -563,6 +563,7 @@ namespace Bloom::Widgets
}
this->state.hoveredByteItem = &byteItem;
this->update();
if (this->state.settings.highlightHoveredRowAndCol) {
const auto byteItemScenePos = byteItem.position();
@@ -590,6 +591,7 @@ namespace Bloom::Widgets
this->hoverRectY->setVisible(false);
this->hoverRectX->update();
this->hoverRectY->update();
this->update();
emit this->hoveredAddress(std::nullopt);
}