do not circle selected days at the old monthly view

This commit is contained in:
tibbi 2021-02-22 23:25:31 +01:00
parent 958ddf0f37
commit 47f601bd21

View File

@ -102,7 +102,10 @@ class MonthViewWrapper(context: Context, attrs: AttributeSet, defStyle: Int) : F
y = yPos
setOnClickListener {
dayClickCallback?.invoke(day)
monthView.updateCurrentlySelectedDay(viewX, viewY)
if (isMonthDayView) {
monthView.updateCurrentlySelectedDay(viewX, viewY)
}
}
addView(this)
}