mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
- button style + icons - try to fix mac text edition error - disabled color considering lightness - fix #LINQT-1524 avatar secured border - fix #LINQT-1525 padding add participant form - fix #LINQT-1537 more options menu in call - fix #LINQT-1538 floating header in parameters - fix #LINQT-1539 display name in conf info participants list - fix #LINQT-1462 rm waiting time
28 lines
556 B
QML
28 lines
556 B
QML
import QtQuick as Quick
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
|
|
Quick.Text {
|
|
id: mainItem
|
|
property double scaleLettersFactor: 1.
|
|
width: txtMeter.advanceWidth
|
|
font {
|
|
family: DefaultStyle.defaultFont
|
|
pixelSize: 10 * DefaultStyle.dp
|
|
weight: 400 * DefaultStyle.dp
|
|
bold: true
|
|
}
|
|
color: DefaultStyle.main2_600
|
|
wrapMode: Quick.Text.Wrap
|
|
elide: Quick.Text.ElideRight
|
|
transformOrigin: Quick.Item.TopLeft
|
|
transform: Quick.Scale {
|
|
yScale: scaleLettersFactor
|
|
}
|
|
|
|
Quick.TextMetrics {
|
|
id: txtMeter
|
|
text: mainItem.text
|
|
font: mainItem.font
|
|
}
|
|
}
|