Make skips equivalent to implicit checks; make their visual representation consistent
|
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 217 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 4.9 KiB |
@@ -85,6 +85,8 @@ public class HistoryChart extends ScrollableChart
|
||||
|
||||
private int reverseTextColor;
|
||||
|
||||
private int backgroundColor;
|
||||
|
||||
private boolean isEditable;
|
||||
|
||||
private String previousMonth;
|
||||
@@ -383,7 +385,7 @@ public class HistoryChart extends ScrollableChart
|
||||
pSquareBg.setColor(colors[0]);
|
||||
pSquareFg.setColor(textColors[1]);
|
||||
}
|
||||
else if(checkmark < target)
|
||||
else if ((isNumerical && checkmark < target) || checkmark != CHECKED_EXPLICITLY)
|
||||
{
|
||||
pSquareBg.setColor(colors[1]);
|
||||
pSquareFg.setColor(textColors[2]);
|
||||
@@ -400,7 +402,7 @@ public class HistoryChart extends ScrollableChart
|
||||
|
||||
if (!isNumerical && checkmark == SKIPPED)
|
||||
{
|
||||
pSquareBg.setColor(textColors[2]);
|
||||
pSquareBg.setColor(backgroundColor);
|
||||
pSquareBg.setStrokeWidth(columnWidth * 0.025f);
|
||||
|
||||
canvas.save();
|
||||
@@ -457,6 +459,8 @@ public class HistoryChart extends ScrollableChart
|
||||
int green = Color.green(primaryColor);
|
||||
int blue = Color.blue(primaryColor);
|
||||
|
||||
backgroundColor = res.getColor(R.attr.cardBgColor);
|
||||
|
||||
if (isBackgroundTransparent)
|
||||
{
|
||||
colors = new int[3];
|
||||
|
||||
@@ -109,6 +109,7 @@ class CheckmarkButtonView(
|
||||
}
|
||||
val id = when (value) {
|
||||
SKIPPED -> R.string.fa_skipped
|
||||
CHECKED_IMPLICITLY -> R.string.fa_skipped
|
||||
UNCHECKED -> R.string.fa_times
|
||||
else -> R.string.fa_check
|
||||
}
|
||||
|
||||
@@ -116,8 +116,8 @@ public class CheckmarkWidgetView extends HabitWidgetView {
|
||||
if (isNumerical) return NumberButtonViewKt.toShortString(checkmarkValue / 1000.0);
|
||||
switch (checkmarkState) {
|
||||
case Checkmark.CHECKED_EXPLICITLY:
|
||||
case Checkmark.CHECKED_IMPLICITLY:
|
||||
return getResources().getString(R.string.fa_check);
|
||||
case Checkmark.CHECKED_IMPLICITLY:
|
||||
case Checkmark.SKIPPED:
|
||||
return getResources().getString(R.string.fa_skipped);
|
||||
case Checkmark.UNCHECKED:
|
||||
|
||||