mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-22 22:11:27 +01:00
ListActivity: fixed typo in adjustResize workaround
This commit is contained in:
parent
4b14585c57
commit
9f235200fe
1 changed files with 2 additions and 2 deletions
|
@ -90,11 +90,11 @@ class ListActivity : AppCompatActivity(), UIObject {
|
|||
if (diff != 0 &&
|
||||
LauncherPreferences.display().fullScreen()
|
||||
) {
|
||||
if (binding.listContainer.paddingBottom !== diff) {
|
||||
if (binding.listContainer.paddingBottom != diff) {
|
||||
binding.listContainer.setPadding(0, 0, 0, diff)
|
||||
}
|
||||
} else {
|
||||
if (binding.listContainer.paddingBottom !== 0) {
|
||||
if (binding.listContainer.paddingBottom != 0) {
|
||||
binding.listContainer.setPadding(0, 0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue