mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
rename SelectFolderDialog to PickFolderDialog
This commit is contained in:
@@ -18,7 +18,7 @@ import java.io.File
|
||||
import java.util.*
|
||||
import kotlin.comparisons.compareBy
|
||||
|
||||
class SelectFolderDialog : DialogFragment(), Breadcrumbs.BreadcrumbsListener {
|
||||
class PickFolderDialog : DialogFragment(), Breadcrumbs.BreadcrumbsListener {
|
||||
|
||||
companion object {
|
||||
lateinit var mPath: String
|
||||
@@ -26,12 +26,12 @@ class SelectFolderDialog : DialogFragment(), Breadcrumbs.BreadcrumbsListener {
|
||||
var mShowHidden: Boolean = false
|
||||
var mShowFullPath: Boolean = false
|
||||
|
||||
fun newInstance(path: String, showHidden: Boolean, showFullPath: Boolean): SelectFolderDialog {
|
||||
fun newInstance(path: String, showHidden: Boolean, showFullPath: Boolean): PickFolderDialog {
|
||||
mPath = path
|
||||
mFirstUpdate = true
|
||||
mShowHidden = showHidden
|
||||
mShowFullPath = showFullPath
|
||||
return SelectFolderDialog()
|
||||
return PickFolderDialog()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user