parent
d151eb56fc
commit
afecbccb0f
|
@ -42,6 +42,7 @@ Other new features:
|
|||
Bug fixes:
|
||||
* Do not crash when applying a symmetry constraint to two points.
|
||||
* Fix TTF font metrics again (properly this time).
|
||||
* Various minor crashes.
|
||||
|
||||
2.2
|
||||
---
|
||||
|
|
|
@ -1024,7 +1024,7 @@ void TextWindow::MouseEvent(bool leftClick, bool leftDown, double x, double y) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
if(r < rows && c < MAX_COLS) {
|
||||
if(r >= 0 && c >= 0 && r < rows && c < MAX_COLS) {
|
||||
SetMousePointerToHand(false);
|
||||
|
||||
hoveredRow = r;
|
||||
|
|
Loading…
Reference in New Issue