Author: rwhitcomb
Date: Fri Feb  9 15:09:55 2018
New Revision: 1823664

URL: http://svn.apache.org/viewvc?rev=1823664&view=rev
Log:
PIVOT-891:  One more place in TerraTextInputSkin that needed to change from Java
identifier part to Unicode identifier part.

Modified:
    
pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra/TerraTextInputSkin.java

Modified: 
pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra/TerraTextInputSkin.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra/TerraTextInputSkin.java?rev=1823664&r1=1823663&r2=1823664&view=diff
==============================================================================
--- 
pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra/TerraTextInputSkin.java
 (original)
+++ 
pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra/TerraTextInputSkin.java
 Fri Feb  9 15:09:55 2018
@@ -1193,7 +1193,7 @@ public class TerraTextInputSkin extends
             do {
                 selectionLength++;
             } while (selectionStart + selectionLength < length
-                && 
Character.isJavaIdentifierPart(textInput.getCharacterAt(selectionStart
+                && 
Character.isUnicodeIdentifierPart(textInput.getCharacterAt(selectionStart
                     + selectionLength)));
         } else {
             return;


Reply via email to