From 9333b5d2b9bf306a458ff3251bd5c17afee4713d Mon Sep 17 00:00:00 2001 From: Thodoris1999 Date: Thu, 6 Sep 2018 18:44:34 +0300 Subject: [PATCH] no dots --- app/src/main/java/gr/thmmy/mthmmy/editorview/EditorView.java | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/gr/thmmy/mthmmy/editorview/EditorView.java b/app/src/main/java/gr/thmmy/mthmmy/editorview/EditorView.java index 4e01856d..44b649a9 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/editorview/EditorView.java +++ b/app/src/main/java/gr/thmmy/mthmmy/editorview/EditorView.java @@ -146,7 +146,6 @@ public class EditorView extends LinearLayout { popupWindow.setContentView(colorPickerScrollview); for (int i = 0; i < colorPicker.getChildCount(); i++) { TextView child = (TextView) colorPicker.getChildAt(i); - child.setText("\u2B24 " + child.getText()); child.setOnClickListener(v -> { boolean hadTextSelection = editText.hasSelection(); getText().insert(editText.getSelectionStart(), "[color=" + colors.get(v.getId()) + "]");