merge in mnc-release history after reset to mnc-dev
diff --git a/libs/minikin/Measurement.cpp b/libs/minikin/Measurement.cpp
index a7bc64b..0b68ac5 100644
--- a/libs/minikin/Measurement.cpp
+++ b/libs/minikin/Measurement.cpp
@@ -41,8 +41,7 @@
             clusterWidth = charAdvance;
         }
     }
-    if (offset < start + count && layout.getCharAdvance(offset - layoutStart) == 0.0f &&
-            !GraphemeBreak::isGraphemeBreak(buf, start, count, offset)) {
+    if (offset < start + count && layout.getCharAdvance(offset - layoutStart) == 0.0f) {
         // In the middle of a cluster, distribute width of cluster so that each grapheme cluster
         // gets an equal share.
         // TODO: get caret information out of font when that's available