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:
Julian Smart
2013-11-07 11:06:22 +00:00
parent 22412b5e8f
commit 54a82234eb

View File

@@ -2816,7 +2816,7 @@ bool wxRichTextCtrl::SelectWord(long position)
}
}
if (positionEnd >= para->GetRange().GetEnd())
positionEnd = para->GetRange().GetEnd();
positionEnd = para->GetRange().GetEnd()-1;
if (positionEnd < positionStart)
return false;