From 1bd24d837c333b9af2b8f7f44b3940f3e284042b Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 4 May 2012 02:52:58 +0000 Subject: [PATCH] Allow block selections on the grid with modifier keys held down Originally committed to SVN as r6747. --- aegisub/src/base_grid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/base_grid.cpp b/aegisub/src/base_grid.cpp index 474ecb27e..6af26c24f 100644 --- a/aegisub/src/base_grid.cpp +++ b/aegisub/src/base_grid.cpp @@ -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;