Skip to content

Commit

Permalink
Replace reference to holo colour so can be used on pre api 14
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyab committed Dec 26, 2015
1 parent ed10862 commit 8727462
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions SeekArc_library/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
<resources>
<color name="progress_gray">#FFD8D8D8</color>
<color name="progress_gray_dark">#FF383838</color>
<color name="default_blue_light">#ff33b5e5</color>
</resources>
2 changes: 1 addition & 1 deletion SeekArc_library/src/com/triggertrap/seekarc/SeekArc.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private void init(Context context, AttributeSet attrs, int defStyle) {

// Defaults, may need to link this into theme settings
int arcColor = res.getColor(R.color.progress_gray);
int progressColor = res.getColor(android.R.color.holo_blue_light);
int progressColor = res.getColor(R.color.default_blue_light);
int thumbHalfheight = 0;
int thumbHalfWidth = 0;
mThumb = res.getDrawable(R.drawable.seek_arc_control_selector);
Expand Down

0 comments on commit 8727462

Please sign in to comment.