mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-01-26 16:45:11 +01:00
fix triple+ overlapping
This commit is contained in:
parent
e7f7e24bdf
commit
c97628fdfc
@ -322,10 +322,15 @@ class WeekFragment : Fragment(), WeeklyCalendar {
|
|||||||
width /= overlappingEvents
|
width /= overlappingEvents
|
||||||
x = width * currentEventOverlapIndex.toFloat()
|
x = width * currentEventOverlapIndex.toFloat()
|
||||||
if (overlappingEvents > 1) {
|
if (overlappingEvents > 1) {
|
||||||
if (currentEventOverlapIndex + 1 == overlappingEvents) {
|
if (currentEventOverlapIndex != 0) {
|
||||||
x += density
|
x += density
|
||||||
} else {
|
}
|
||||||
|
|
||||||
|
if (currentEventOverlapIndex + 1 != overlappingEvents) {
|
||||||
width -= density
|
width -= density
|
||||||
|
if (currentEventOverlapIndex != 0) {
|
||||||
|
width -= density
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user