mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-03-09 16:10:23 +01:00
change toast duration
- change the toast duration for when a user picks a folder restricted on SDK 30+ to Toast.LENGTH_LONG
This commit is contained in:
parent
fe49035966
commit
519353cb04
@ -1,6 +1,7 @@
|
||||
package com.simplemobiletools.gallery.pro.dialogs
|
||||
|
||||
import android.view.KeyEvent
|
||||
import android.widget.Toast
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import androidx.recyclerview.widget.RecyclerView
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
@ -112,7 +113,7 @@ class PickDirectoryDialog(
|
||||
activity.toast(R.string.source_and_destination_same)
|
||||
return@DirectoryAdapter
|
||||
} else if (isRPlus() && activity.isAStorageRootFolder(path)) {
|
||||
activity.toast(R.string.copy_to_restricted_folder_message)
|
||||
activity.toast(R.string.copy_to_restricted_folder_message, Toast.LENGTH_LONG)
|
||||
return@DirectoryAdapter
|
||||
} else {
|
||||
activity.handleLockedFolderOpening(path) { success ->
|
||||
|
Loading…
x
Reference in New Issue
Block a user