Fixed: #2522 Hex view - reseting view when mouse over panel bottom

This commit is contained in:
Jindra Petřík
2025-08-23 18:43:44 +02:00
parent 0cd71068c4
commit cf55a8b897
2 changed files with 5 additions and 1 deletions

View File

@@ -181,7 +181,9 @@ public class HexView extends JTable {
int col = table.columnAtPoint(point);
int row = table.rowAtPoint(point);
mouseOverIdx = -1;
getModel().fireTableCellUpdated(row, col);
if (row > -1 && col > -1) {
getModel().fireTableCellUpdated(row, col);
}
if (listener != null) {
listener.byteMouseMoved(-1, (byte) 0);
}