mirror of https://github.com/odrling/Aegisub
Add some sanity checking to SelectRow to prevent an invalid row from being selected when undoing line insertions
Originally committed to SVN as r3006.
This commit is contained in:
parent
1c5ff247f6
commit
1d55e6b7b2
|
@ -170,6 +170,10 @@ void BaseGrid::MakeCellVisible(int row, int col,bool center) {
|
||||||
////////////////
|
////////////////
|
||||||
// Select a row
|
// Select a row
|
||||||
void BaseGrid::SelectRow(int row, bool addToSelected, bool select) {
|
void BaseGrid::SelectRow(int row, bool addToSelected, bool select) {
|
||||||
|
// Sanity checking
|
||||||
|
if (row >= GetRows()) row = GetRows()-1;
|
||||||
|
else if (row < 0) row = 0;
|
||||||
|
|
||||||
if (!addToSelected) ClearSelection();
|
if (!addToSelected) ClearSelection();
|
||||||
try {
|
try {
|
||||||
bool cur = selMap.at(row);
|
bool cur = selMap.at(row);
|
||||||
|
|
Loading…
Reference in New Issue