do not use Rect at storing grid items

This commit is contained in:
tibbi
2022-09-17 22:34:51 +02:00
parent 05484a5b29
commit 0791197d66
2 changed files with 4 additions and 9 deletions

View File

@ -1,5 +1,3 @@
package com.simplemobiletools.launcher.models
import android.graphics.Rect
data class HomeScreenGridItem(var rect: Rect, val packageName: String)
data class HomeScreenGridItem(var left: Int, val top: Int, val right: Int, val bottom: Int, val packageName: String)