Allow block selections on the grid with modifier keys held down

Originally committed to SVN as r6747.
This commit is contained in:
Thomas Goyne 2012-05-04 02:52:58 +00:00
parent 213ccccf86
commit 1bd24d837c
1 changed files with 1 additions and 1 deletions

View File

@ -739,7 +739,7 @@ void BaseGrid::OnMouseEvent(wxMouseEvent &event) {
return;
// Block select
if ((click && shift && !alt) || (holding && !ctrl && !alt && !shift)) {
if ((click && shift && !alt) || holding) {
extendRow = old_extend;
int i1 = row;
int i2 = extendRow;