Phone UI: History: save as contact not shown

REPRODUCIBILITY:-
BUILD ID = OS VERSION:3.4.0.22+24
HARDWARE:-
UI LANGUAGE:na
REGRESSION:?

DESCRIPTION:

Menu item “Save as contact” is not shown when long tapping on a number in call history.

PRECONDITIONS:

“quick call” is off

STEPS TO REPRODUCE:

  1. switch off “quick call”
  2. long tap on number in history of phone ui

EXPECTED RESULT:

long tapping on number always shows “Save as contact”

ACTUAL RESULT:

“Save as contact” is missing

ADDITIONAL INFORMATION:

In “/usr/share/voicecall-ui-jolla/pages/CallHistoryView.qml” there is on line 234 “visible: !privateNumber && quickCall”. Why is that? Removing “&& quickCall” and restarting Homescreen does the trick. However, didn’t check for side effects.

3 Likes

I agree that this way it would be better.

However, you can do it in the following way, instead, as “Quick call” is OFF:

  1. Tap the number in call history.
  2. Pull down “Save”.
  3. Edit: add name and details.
  4. Tap Accept.

In other words, it works. But the UI is perhaps not consistent.

I figured that. Do you really want me to explain that to my wife? :wink:
I haven’t seen any illeffects till now…
Thanks for answering.

So, I have been using this:


— CallHistoryView-4.1.0.24.qml 2021-06-24 12:23:50.536749786 +0100
+++ CallHistoryView-mar-4.1.0.24.qml 2021-06-24 12:28:08.663214666 +0100
@@ -226,7 +226,8 @@
}
}
MenuItem {
- visible: !privateNumber && quickCall
+ //% visible: !privateNumber && quickCall
+ visible: !privateNumber
objectName: “contactCardMenuItem”
text: {
//% “Open contact card”

… on /usr/share/voicecall-ui-jolla/pages/CallHistoryView.qml

PS: don't know how to get it properly formated...