Skip to content

Commit 2ef7b2b

Browse files
Colors update
1 parent 9eacd21 commit 2ef7b2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

library/src/main/java/com/github/ahmadaghazadeh/editor/processor/TextProcessor.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
import android.view.inputmethod.EditorInfo;
5757
import android.widget.Scroller;
5858
import android.widget.TextView;
59+
import android.graphics.Color;
5960

6061
import com.github.ahmadaghazadeh.editor.R;
6162
import com.github.ahmadaghazadeh.editor.document.commons.LineObject;
@@ -239,7 +240,7 @@ protected void initTheme() {
239240
mLineNumberPaint.setTextSize(getTextSize());
240241

241242
mLinePaint = new StylePaint(false, false);
242-
mLinePaint.setColor(mLineNumberPaint.getColor());
243+
mLinePaint.setColor(Color.parseColor("#606060"));
243244
mLinePaint.setStyle(StylePaint.Style.STROKE);
244245

245246

@@ -1652,4 +1653,4 @@ public void afterTextChanged(Editable editable) {
16521653
}
16531654

16541655
//endregion METHODS
1655-
}
1656+
}

0 commit comments

Comments
 (0)