calculate widget tiles from real sizes

This commit is contained in:
tibbi
2022-09-16 10:16:08 +02:00
parent d23893755a
commit 08de22c3c9
2 changed files with 7 additions and 5 deletions

View File

@ -8,6 +8,6 @@ data class AppWidget(
val appIcon: Drawable,
val widgetTitle: String,
val widgetPreviewImage: Drawable?,
var width: Int,
val height: Int
var widthTiles: Int,
val heightTiles: Int
) : WidgetsListItem()