Correct the double-clicked word selection when at the end of a paragraph.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2816,7 +2816,7 @@ bool wxRichTextCtrl::SelectWord(long position)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (positionEnd >= para->GetRange().GetEnd())
|
if (positionEnd >= para->GetRange().GetEnd())
|
||||||
positionEnd = para->GetRange().GetEnd();
|
positionEnd = para->GetRange().GetEnd()-1;
|
||||||
|
|
||||||
if (positionEnd < positionStart)
|
if (positionEnd < positionStart)
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user