From 9269c797639e2640f4584b57892e1c58ad47e460 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 4 May 2012 02:53:09 +0000 Subject: [PATCH] Only clear the selection due to a click on no visual features if there are actually multiple visual features to select Originally committed to SVN as r6749. --- aegisub/src/visual_tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/visual_tool.cpp b/aegisub/src/visual_tool.cpp index 9816d22f9..25c7881b3 100644 --- a/aegisub/src/visual_tool.cpp +++ b/aegisub/src/visual_tool.cpp @@ -285,7 +285,7 @@ void VisualTool::OnMouseEvent(wxMouseEvent &event) { } // start hold else { - if (!alt_down) { + if (!alt_down && features.size() > 1) { sel_features.clear(); Selection sel; sel.insert(c->selectionController->GetActiveLine());