mirror of https://github.com/odrling/Aegisub
Prevent an out of range exception from being thrown. (was commonly being thrown when commit was used on the last row of the grid)
Originally committed to SVN as r2945.
This commit is contained in:
parent
a60d16913d
commit
5b9bd7ac6d
|
@ -224,6 +224,7 @@ void BaseGrid::ClearSelection() {
|
|||
/////////////////////////
|
||||
// Is cell in selection?
|
||||
bool BaseGrid::IsInSelection(int row, int col) const {
|
||||
if (row >= GetRows() || row < 0) return false;
|
||||
(void) col;
|
||||
try {
|
||||
return selMap.at(row);
|
||||
|
|
Loading…
Reference in New Issue