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 bb46c5d commit 1d4c652Copy full SHA for 1d4c652
app/src/main/kotlin/com/simplemobiletools/contacts/pro/activities/DialpadActivity.kt
@@ -232,9 +232,11 @@ class DialpadActivity : SimpleActivity() {
232
}
233
234
private fun speedDial(id: Int) {
235
- val speedDial = speedDialValues.firstOrNull { it.id == id }
236
- if (speedDial?.isValid() == true) {
237
- initCall(speedDial.number)
+ if (dialpad_input.value.isEmpty()) {
+ val speedDial = speedDialValues.firstOrNull { it.id == id }
+ if (speedDial?.isValid() == true) {
238
+ initCall(speedDial.number)
239
+ }
240
241
242
0 commit comments