answered
2020-02-09 13:38:22 +0200
Not answer as such, but more for visibility.
You can either do this yourself or wait for Jolla to 'fix it' ~ see above comment from @Joona Petrell
IF you don't mind using terminal and currently have NO PATCHES applied to the phone app, navigate to line 627
in;
/usr/share/voicecall-ui-jolla/pages/calling/InCallView.qml
The original lines look like this;
anchors {
bottom: parent.bottom
horizontalCenter: parent.horizontalCenter
}
simply add a margin to the bottom anchor so it looks like this;
anchors {
bottom: parent.bottom
bottomMargin: Theme.paddingLarge*2
horizontalCenter: parent.horizontalCenter
}
Once you have made the changes, you need to kill the phone app for the changes to apply, you can do this with;
pkill voicecall-ui
The higher the number at the end of the bottomMargin line, determines the height from the bottom. I'm still using Jolla1 so not a problem for me.
Original;
Edited;
Thanks, this worked. Had to set it to *8 to get it to a comfortable location.
ender ( 2020-02-09 14:11:48 +0200 )editYou're welcome. I'm pleased to see someone giving it a go instead of waiting for help that may well not be forthcoming,
Spam Hunter ( 2020-02-09 16:20:46 +0200 )editThis is getting improved in the next 3.3.0 release.
Joona Petrell ( 2020-02-10 13:53:16 +0200 )edit