Skip to content

Commit aea5b03

Browse files
committed
Minor code improvement
1 parent 3712f9f commit aea5b03

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

app/src/main/kotlin/org/fossify/filemanager/activities/DecompressActivity.kt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,15 @@ class DecompressActivity : SimpleActivity() {
114114

115115
private fun decompressFiles() {
116116
val defaultFolder = getRealPathFromURI(uri!!) ?: internalStoragePath
117-
FilePickerDialog(this, defaultFolder, false, config.showHidden, true, true, showFavoritesButton = true) { destination ->
117+
FilePickerDialog(
118+
activity = this,
119+
currPath = defaultFolder,
120+
pickFile = false,
121+
showHidden = config.showHidden,
122+
showFAB = true,
123+
canAddShowHiddenButton = true,
124+
showFavoritesButton = true
125+
) { destination ->
118126
handleSAFDialog(destination) {
119127
if (it) {
120128
ensureBackgroundThread {

0 commit comments

Comments
 (0)