We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e104d commit 65bbe06Copy full SHA for 65bbe06
app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/MainActivity.kt
@@ -273,7 +273,8 @@ class MainActivity : SimpleActivity() {
273
var currFavoriteIndex = -1
274
275
favorites.forEachIndexed { index, path ->
276
- items.add(RadioItem(index, path, path))
+ val visiblePath = humanizePath(path).replace("/", " / ")
277
+ items.add(RadioItem(index, visiblePath, path))
278
if (path == fragment.currentPath) {
279
currFavoriteIndex = index
280
}
0 commit comments