From 9cd45c671257e6e34b189f15334b53ec910c574f Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Mon, 11 Jul 2022 14:38:52 +0200 Subject: [PATCH] Update keypad UI. --- linphone-app/ui/modules/Linphone/TelKeypad/TelKeypad.qml | 7 +++++++ linphone-app/ui/views/App/Calls/VideoConference.qml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 } }