Skip to content

Commit c807e24

Browse files
committed
option to skip delete confirmation
1 parent 16cfb84 commit c807e24

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,6 @@ class Config(context: Context) : BaseConfig(context) {
7676
get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 1.2f)
7777
set(editorTextZoom) = prefs.edit().putFloat(EDITOR_TEXT_ZOOM, editorTextZoom).apply()
7878

79-
/* var skipDeleteConfirmation: Boolean
80-
get() = prefs.getBoolean(SKIP_DELETE_CONFIRMATION, true)
81-
set(deleteConfirmationEnabled) = prefs.edit().putBoolean(SKIP_DELETE_CONFIRMATION, deleteConfirmationEnabled).apply()*/
82-
8379
var viewType: Int
8480
get() = prefs.getInt(VIEW_TYPE, VIEW_TYPE_LIST)
8581
set(viewTypeFiles) = prefs.edit().putInt(VIEW_TYPE, viewTypeFiles).apply()

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Constants.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const val FILE_COLUMN_CNT = "file_column_cnt"
2020
const val FILE_LANDSCAPE_COLUMN_CNT = "file_landscape_column_cnt"
2121
const val DISPLAY_FILE_NAMES = "display_file_names"
2222
const val SHOW_TABS = "show_tabs"
23-
//const val SKIP_DELETE_CONFIRMATION = "skip_delete_confirm"
2423

2524
// open as
2625
const val OPEN_AS_DEFAULT = 0

0 commit comments

Comments
 (0)