Merge pull request #17 from AdrianLxM/watchfaces-steampunk

darker and gracile steampunk-chart
This commit is contained in:
Andrew Warrington 2018-01-03 19:50:13 +01:00 committed by GitHub
commit 96c41881fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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));
} }

View file

@ -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();
} }