Bug #932
EditorBar - LeftDown shouldn't chnage cursor image
Status: | Approved | Start date: | 11/20/2014 | |
---|---|---|---|---|
Priority: | Low | Due date: | ||
Assignee: | Zbigniew Rebacz | % Done: | 0% | |
Category: | CodeEditor | Spent time: | - | |
Target version: | - |
Description
This bug can be ovserved when we wamt to set breakpoint. In this case cursor image shouldn't be changed.
Investigation:
void EditorBar::LeftDown(Point p, dword flags)
{
if(p.x > GetSize().cx - annotations)
WhenAnnotationClick();
else
if(editor)
editor->LeftDown(Point(0, p.y), flags); // <- This invocation causes problems. Probably "SetCapture" in LineEdit::LeftDown is problem.
}
History
#1 Updated by Miroslav Fidler over 10 years ago
- Status changed from New to Ready for QA
- Assignee set to Zbigniew Rebacz
#2 Updated by Zbigniew Rebacz over 10 years ago
- Status changed from Ready for QA to Approved