Skip to content

Commit

Permalink
Fixed counter when List<Entry> has one element
Browse files Browse the repository at this point in the history
  • Loading branch information
AIDEA775 committed Mar 19, 2019
1 parent 72795fb commit e33dc83
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/src/main/java/com/uncmorfi/counter/CounterFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,12 @@ class CounterFragment : Fragment(), SeekBar.OnSeekBarChangeListener {

private fun updateCharts(data: List<Entry>?) {
if (data != null && !data.isEmpty()) {
// Algunas veces el medidor se cae, y las raciones aparecen cargadas a las 00:00hs
// así que al primer elemento lo ponemos 1 min antes del segundo elemento
// para que no haya un espacio vacío en el medio.
data[0].x = data[1].x - 60f
if (data.size > 1) {
// Algunas veces el medidor se cae, y las raciones aparecen cargadas a las 00:00hs
// así que al primer elemento lo ponemos 1 min antes del segundo elemento
// para que no haya un espacio vacío en el medio.
data[0].x = data[1].x - 60f
}

val timeData = LineDataSet(data, getString(R.string.counter_chart_label_time))
.style(ChartStyle.RATIONS, requireContext())
Expand Down

0 comments on commit e33dc83

Please sign in to comment.