updating commons

This commit is contained in:
tibbi 2022-02-20 10:41:26 +01:00
parent 15175c6c5e
commit 00b09d36d0
3 changed files with 4 additions and 4 deletions

View File

@ -63,7 +63,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:7e3374977a' implementation 'com.github.SimpleMobileTools:Simple-Commons:3abc10fcdb'
implementation 'com.github.Stericson:RootTools:df729dcb13' implementation 'com.github.Stericson:RootTools:df729dcb13'
implementation 'com.github.Stericson:RootShell:1.6' implementation 'com.github.Stericson:RootShell:1.6'
implementation 'com.alexvasilkov:gesture-views:2.5.2' implementation 'com.alexvasilkov:gesture-views:2.5.2'

View File

@ -574,7 +574,7 @@ class ItemsAdapter(
} }
} }
} else { } else {
activity.deleteFileBg(fileDirItem, false) { activity.deleteFileBg(fileDirItem, false, false) {
if (it) { if (it) {
extractEntry(newPath, entry, zipInputStream) extractEntry(newPath, entry, zipInputStream)
} else { } else {

View File

@ -70,7 +70,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
override fun setupFontSize() { override fun setupFontSize() {
getRecyclerAdapter()?.updateFontSizes() getRecyclerAdapter()?.updateFontSizes()
if (currentPath != "") { if (currentPath != "") {
breadcrumbs.updateFontSize(context!!.getTextSize()) breadcrumbs.updateFontSize(context!!.getTextSize(), false)
} }
} }
@ -123,7 +123,7 @@ class ItemsFragment(context: Context, attributeSet: AttributeSet) : MyViewPagerF
storedItems = items storedItems = items
if (items_list.adapter == null) { if (items_list.adapter == null) {
breadcrumbs.updateFontSize(context!!.getTextSize()) breadcrumbs.updateFontSize(context!!.getTextSize(), true)
} }
ItemsAdapter(activity as SimpleActivity, storedItems, this, items_list, isPickMultipleIntent, items_swipe_refresh) { ItemsAdapter(activity as SimpleActivity, storedItems, this, items_list, isPickMultipleIntent, items_swipe_refresh) {