parent
0b2fc34de1
commit
74d8621f53
|
@ -7,6 +7,7 @@ Changelog
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
* Do not crash when applying a symmetry constraint to two points.
|
* Do not crash when applying a symmetry constraint to two points.
|
||||||
* Fix TTF font metrics again (properly this time).
|
* Fix TTF font metrics again (properly this time).
|
||||||
|
* Various minor crashes.
|
||||||
|
|
||||||
2.2
|
2.2
|
||||||
---
|
---
|
||||||
|
|
|
@ -988,7 +988,7 @@ void TextWindow::MouseEvent(bool leftClick, bool leftDown, double x, double y) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(r >= rows || c >= MAX_COLS) {
|
if(r < 0 || c < 0 || r >= rows || c >= MAX_COLS) {
|
||||||
SetMousePointerToHand(false);
|
SetMousePointerToHand(false);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user