mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-22 06:08:07 +00:00
Use custom font for chat compose area.
This commit is contained in:
parent
fd984d5d19
commit
60ef6a659f
2 changed files with 5 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Fixed
|
||||
- Section date timezone in chat.
|
||||
- Use custom font for chat compose area.
|
||||
|
||||
## 5.0.15 - 2023-04-11
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import QtQuick.Layouts 1.12
|
|||
import Common 1.0
|
||||
import Linphone 1.0
|
||||
import Common.Styles 1.0
|
||||
import Units 1.0
|
||||
import Utils 1.0
|
||||
|
||||
// =============================================================================
|
||||
|
|
@ -155,7 +156,9 @@ Item {
|
|||
}
|
||||
|
||||
color: DroppableTextAreaStyle.text.color
|
||||
font.pointSize: DroppableTextAreaStyle.text.pointSize-1
|
||||
property font customFont : SettingsModel.textMessageFont
|
||||
font.family: customFont.family
|
||||
font.pointSize: Units.dp * customFont.pointSize
|
||||
rightPadding: fileChooserButton.width +
|
||||
fileChooserButton.anchors.rightMargin +
|
||||
DroppableTextAreaStyle.fileChooserButton.margins
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue