mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Fix quote in "supprimer l'historique" text
Cosmetics on the button
This commit is contained in:
parent
16879379b9
commit
2bd5c8a161
1 changed files with 13 additions and 26 deletions
|
|
@ -150,35 +150,22 @@ AbstractMainPage {
|
|||
height: 24 * DefaultStyle.dp
|
||||
focus: true
|
||||
popup.x: 0
|
||||
popup.padding: 10 * DefaultStyle.dp
|
||||
popup.padding: 20 * DefaultStyle.dp
|
||||
KeyNavigation.right: newCallButton
|
||||
KeyNavigation.down: listStackView
|
||||
popup.contentItem: Button {
|
||||
color: removeHistory.popupBackgroundColor
|
||||
borderColor: removeHistory.popupBackgroundColor
|
||||
inversedColors: true
|
||||
contentItem: RowLayout {
|
||||
EffectImage {
|
||||
imageSource: AppIcons.trashCan
|
||||
width: 24 * DefaultStyle.dp
|
||||
height: 24 * DefaultStyle.dp
|
||||
Layout.preferredWidth: 24 * DefaultStyle.dp
|
||||
Layout.preferredHeight: 24 * DefaultStyle.dp
|
||||
fillMode: Image.PreserveAspectFit
|
||||
colorizationColor: DefaultStyle.danger_500main
|
||||
popup.contentItem: ColumnLayout {
|
||||
IconLabelButton {
|
||||
Layout.preferredHeight: 24 * DefaultStyle.dp
|
||||
Layout.fillWidth: true
|
||||
focus: visible
|
||||
iconSize: 24 * DefaultStyle.dp
|
||||
text: qsTr("Supprimer l'historique")
|
||||
iconSource: AppIcons.trashCan
|
||||
color: DefaultStyle.danger_500main
|
||||
onClicked: {
|
||||
removeHistory.close()
|
||||
deleteHistoryPopup.open()
|
||||
}
|
||||
Text {
|
||||
text: qsTr("Supprimer l’historique")
|
||||
color: DefaultStyle.danger_500main
|
||||
font {
|
||||
pixelSize: 14 * DefaultStyle.dp
|
||||
weight: 400 * DefaultStyle.dp
|
||||
}
|
||||
}
|
||||
}
|
||||
onClicked: {
|
||||
removeHistory.close()
|
||||
deleteHistoryPopup.open()
|
||||
}
|
||||
}
|
||||
Connections {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue