From a02bb12eaf622ceddd073c4d4a546c118675ed29 Mon Sep 17 00:00:00 2001 From: Naveen Date: Fri, 5 May 2023 23:04:43 +0530 Subject: [PATCH] Rename `AUTO_FILL_DELAY` to `AUTO_COMPLETE_DELAY` --- .../contacts/pro/activities/EditContactActivity.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/EditContactActivity.kt b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/EditContactActivity.kt index f1762c63..caecc090 100644 --- a/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/EditContactActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/EditContactActivity.kt @@ -59,7 +59,7 @@ class EditContactActivity : ContactActivity() { private val CHOOSE_PHOTO = 2 private val REMOVE_PHOTO = 3 - private val AUTO_FILL_DELAY = 5000L + private val AUTO_COMPLETE_DELAY = 5000L private var mLastSavePromptTS = 0L private var wasActivityInitialized = false @@ -1558,7 +1558,7 @@ class EditContactActivity : ContactActivity() { handler.postDelayed({ adapter.autoComplete = true adapter.filter.filter(it) - }, AUTO_FILL_DELAY) + }, AUTO_COMPLETE_DELAY) } } }