avoid showing the Hide folder confirmation twice if initially hiding 2

This commit is contained in:
tibbi 2017-03-30 18:17:27 +02:00
parent 80dff10e13
commit d2afd2de94
1 changed files with 1 additions and 1 deletions

View File

@ -180,8 +180,8 @@ class DirectoryAdapter(val activity: SimpleActivity, val dirs: MutableList<Direc
if (config.wasHideFolderTooltipShown) {
hideFolder(path)
} else {
config.wasHideFolderTooltipShown = true
ConfirmationDialog(activity, activity.getString(R.string.hide_folder_description)) {
config.wasHideFolderTooltipShown = true
hideFolder(path)
}
}