summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
index 0619c69f1b..3816b1273a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
@@ -2268,14 +2268,14 @@ public int getOffset (int x, int y, int[] trailing) {
int offset = run.start + piCP[0];
int length = segmentsText.length();
char ch = offset < length ? segmentsText.charAt(offset) : 0;
- if (0xD800 <= ch && ch <= 0xDBFF) {
+ if (0xD800 <= ch && ch <= 0xDBFF && piTrailing[0] <= 1) {
if (offset + 1 < length) {
ch = segmentsText.charAt(offset + 1);
if (0xDC00 <= ch && ch <= 0xDFFF) {
if (trailing != null) trailing[0] = 0;
}
}
- } else if (0xDC00 <= ch && ch <= 0xDFFF) {
+ } else if (0xDC00 <= ch && ch <= 0xDFFF && piTrailing[0] <= 1) {
if (offset - 1 >= 0) {
ch = segmentsText.charAt(offset - 1);
if (0xD800 <= ch && ch <= 0xDBFF) {