diff --git a/linphone-app/ui/modules/Linphone/TelKeypad/TelKeypad.qml b/linphone-app/ui/modules/Linphone/TelKeypad/TelKeypad.qml index 2f25543a0..c04feaa4a 100644 --- a/linphone-app/ui/modules/Linphone/TelKeypad/TelKeypad.qml +++ b/linphone-app/ui/modules/Linphone/TelKeypad/TelKeypad.qml @@ -46,6 +46,12 @@ Rectangle { Layout.preferredWidth: parent.width Layout.preferredHeight: implicitHeight color: 'white' + + font { + bold: true + pointSize: TelKeypadStyle.button.text.pointSize + } + wrapMode: Text.WrapAnywhere horizontalAlignment: Qt.AlignCenter visible: showHistory @@ -57,6 +63,7 @@ Rectangle { GridLayout { id: grid + Layout.topMargin: TelKeypadStyle.rowSpacing+5 columns: 4 // Not a style. rows: 4 // Same idea. diff --git a/linphone-app/ui/views/App/Calls/VideoConference.qml b/linphone-app/ui/views/App/Calls/VideoConference.qml index 9fc494681..0f26b01ae 100644 --- a/linphone-app/ui/views/App/Calls/VideoConference.qml +++ b/linphone-app/ui/views/App/Calls/VideoConference.qml @@ -495,6 +495,6 @@ Rectangle { showHistory:true call: callModel visible: SettingsModel.showTelKeypadAutomatically - y: 55 + y: 70 } }