CodeEditor: Fixed mouse shape when clicking the bar #932

git-svn-id: svn://ultimatepp.org/upp/trunk@7939 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-12-01 17:27:41 +00:00
parent c844ab87cd
commit 448e49216a

View file

@ -178,8 +178,10 @@ void EditorBar::LeftDown(Point p, dword flags)
if(p.x > GetSize().cx - annotations)
WhenAnnotationClick();
else
if(editor)
if(editor) {
editor->LeftDown(Point(0, p.y), flags);
ReleaseCtrlCapture();
}
}
String& EditorBar::PointBreak(int& y)