Merge pull request #17 from AdrianLxM/watchfaces-steampunk
darker and gracile steampunk-chart
This commit is contained in:
commit
96c41881fd
2 changed files with 3 additions and 3 deletions
|
@ -146,7 +146,7 @@ public class BgGraphBuilder {
|
||||||
|
|
||||||
for (TempWatchData twd: tempWatchDataList) {
|
for (TempWatchData twd: tempWatchDataList) {
|
||||||
if(twd.endTime > start_time) {
|
if(twd.endTime > start_time) {
|
||||||
lines.add(tempValuesLine(twd, (float) minChart, factor, false, highlight?3:2));
|
lines.add(tempValuesLine(twd, (float) minChart, factor, false, highlight?(pointSize+1):pointSize));
|
||||||
if(highlight){
|
if(highlight){
|
||||||
lines.add(tempValuesLine(twd, (float) minChart, factor, true, 1));
|
lines.add(tempValuesLine(twd, (float) minChart, factor, true, 1));
|
||||||
}
|
}
|
||||||
|
|
|
@ -177,8 +177,8 @@ public class Steampunk extends BaseWatchFace {
|
||||||
midColor = ContextCompat.getColor(getApplicationContext(), R.color.black);
|
midColor = ContextCompat.getColor(getApplicationContext(), R.color.black);
|
||||||
gridColor = ContextCompat.getColor(getApplicationContext(), R.color.grey_steampunk);
|
gridColor = ContextCompat.getColor(getApplicationContext(), R.color.grey_steampunk);
|
||||||
basalBackgroundColor = ContextCompat.getColor(getApplicationContext(), R.color.basal_dark);
|
basalBackgroundColor = ContextCompat.getColor(getApplicationContext(), R.color.basal_dark);
|
||||||
basalCenterColor = ContextCompat.getColor(getApplicationContext(), R.color.basal_light);
|
basalCenterColor = ContextCompat.getColor(getApplicationContext(), R.color.basal_dark);
|
||||||
pointSize = 2;
|
pointSize = 1;
|
||||||
setupCharts();
|
setupCharts();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue