remove Normalizer from clipboard and PaperCard artist.

This commit is contained in:
Anthony Calosa
2025-08-24 00:42:40 +08:00
parent becdadb279
commit 65fb3414d8
2 changed files with 2 additions and 2 deletions

View File

@@ -571,7 +571,7 @@ public class Main extends AndroidApplication {
if (clipData.getItemCount() > 0) {
try {
String text = clipData.getItemAt(0).coerceToText(getContext()).toString();
return Normalizer.normalize(text, Normalizer.Form.NFD);
return text;//Normalizer.normalize(text, Normalizer.Form.NFD);
} catch (Exception ex) {
ex.printStackTrace();
}