What sourcefiles did you change?cbEditor.h:
bool cbEditor::OnBeforeBuildContextMenu(bool noeditor)
{
if (!noeditor)
{
cbStyledTextCtrl* control = Manager::Get()->GetEditorManager()->....
int pos = control->PositionFromPoint(control->ScreenToClient(wxGetMousePosition()));
- control->GotoPos(pos);
+ if(control->GetSelectionStart() > pos || control->GetSelectionEnd() < pos)
+ control->GotoPos(pos);
}
...
}
Did you update the sourceforge bug?Uhh.... no admin rights? ;)