mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-04-04 21:41:04 +02:00
fixing some weekly view calculations
This commit is contained in:
parent
2d5b174df9
commit
3bcd394ad0
app/src/main
@ -466,8 +466,8 @@ class WeekFragment : Fragment(), WeeklyCalendar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var endMinutes = startMinutes + duration
|
var endMinutes = startMinutes + duration
|
||||||
if (endMinutes - startMinutes < minimalHeight) {
|
if ((endMinutes - startMinutes) * minuteHeight < minimalHeight) {
|
||||||
endMinutes += Math.round(minimalHeight / minuteHeight)
|
endMinutes = startMinutes + (minimalHeight / minuteHeight).toInt()
|
||||||
}
|
}
|
||||||
|
|
||||||
val range = Range(startMinutes, endMinutes)
|
val range = Range(startMinutes, endMinutes)
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
|
android:includeFontPadding="false"
|
||||||
android:maxLines="3"
|
android:maxLines="3"
|
||||||
android:paddingStart="@dimen/tiny_margin"
|
android:paddingStart="@dimen/tiny_margin"
|
||||||
android:textColor="@android:color/white"
|
android:textColor="@android:color/white"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user