From 3b3d9a839d2bff6b02749a3225c56625c674e6fa Mon Sep 17 00:00:00 2001 From: Takashi Sawanaka Date: Sat, 2 Dec 2023 13:58:21 +0900 Subject: [PATCH] Fix an issue where the scroll position when clicking on Location View may not be as expected when Wrap Lines is enabled. --- Src/LocationView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/LocationView.cpp b/Src/LocationView.cpp index 20bc37c3379..e5b47e9deb3 100644 --- a/Src/LocationView.cpp +++ b/Src/LocationView.cpp @@ -560,6 +560,7 @@ void CLocationView::OnLButtonDown(UINT nFlags, CPoint point) bool bShift = (GetKeyState(VK_SHIFT) & 0x8000) != 0; if (!GotoLocation(point, false, !bShift)) CView::OnLButtonDown(nFlags, point); + OnMouseMove(nFlags, point); } /**