mirror of https://github.com/odrling/Aegisub
Allow block selections on the grid with modifier keys held down
Originally committed to SVN as r6747.
This commit is contained in:
parent
213ccccf86
commit
1bd24d837c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue