TMaskEdit: fix off by 1 error in DeleteChars.

git-svn-id: trunk@64767 -
This commit is contained in:
bart 2021-03-07 21:17:13 +00:00
parent 0502efa986
commit e28c9c1e26

View File

@ -1379,7 +1379,7 @@ begin
if HasExtSelection then
begin
DeleteSelected;
if IsLiteral(FCursorPos) then
if IsLiteral(FCursorPos+1) then
SelectNextChar;
end
else