mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-30 18:21:35 +00:00
Fixed: #2522 Hex view - reseting view when mouse over panel bottom
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user