Skip to content

Commit

Permalink
Colors update
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszgromada authored Nov 24, 2018
1 parent 9eacd21 commit 2ef7b2b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
import android.view.inputmethod.EditorInfo;
import android.widget.Scroller;
import android.widget.TextView;
import android.graphics.Color;

import com.github.ahmadaghazadeh.editor.R;
import com.github.ahmadaghazadeh.editor.document.commons.LineObject;
Expand Down Expand Up @@ -239,7 +240,7 @@ protected void initTheme() {
mLineNumberPaint.setTextSize(getTextSize());

mLinePaint = new StylePaint(false, false);
mLinePaint.setColor(mLineNumberPaint.getColor());
mLinePaint.setColor(Color.parseColor("#606060"));
mLinePaint.setStyle(StylePaint.Style.STROKE);


Expand Down Expand Up @@ -1652,4 +1653,4 @@ public void afterTextChanged(Editable editable) {
}

//endregion METHODS
}
}

0 comments on commit 2ef7b2b

Please sign in to comment.