ide: Minor navigator fix (position in line)

This commit is contained in:
Mirek Fidler 2022-11-30 00:53:25 +01:00
parent c3f6865b26
commit 6b408f5c36
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ AnnotationItem AssistEditor::FindCurrentAnnotation()
line1st = false;
}
else
if(m.pos.x < pos.x)
if(m.pos.x <= pos.x)
q = m;
}
else

View file

@ -1,6 +1,6 @@
#include "clang.h"
// #define DUMPTREE
#define DUMPTREE
class ClangCursorInfo {
CXCursor cursor;