mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-03 22:56:49 +00:00
feat(ui/views/App/Main/Dialogs/About): supports version copy/paste
This commit is contained in:
parent
66182739bb
commit
1ae83f6f93
1 changed files with 10 additions and 6 deletions
|
|
@ -48,28 +48,32 @@ DialogPlus {
|
|||
|
||||
spacing: 0
|
||||
|
||||
Text {
|
||||
TextEdit {
|
||||
color: AboutStyle.versionsBlock.appVersion.color
|
||||
elide: Text.ElideRight
|
||||
selectByMouse: true
|
||||
font.pointSize: AboutStyle.versionsBlock.appVersion.fontSize
|
||||
text: 'Linphone Desktop Qt' + App.qtVersion + ' - ' + Qt.application.version
|
||||
text: 'Desktop Qt' + App.qtVersion + ' - ' + Qt.application.version
|
||||
|
||||
height: parent.height / 2
|
||||
width: parent.width
|
||||
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
onActiveFocusChanged: deselect()
|
||||
}
|
||||
|
||||
Text {
|
||||
TextEdit {
|
||||
color: AboutStyle.versionsBlock.coreVersion.color
|
||||
elide: Text.ElideRight
|
||||
selectByMouse: true
|
||||
font.pointSize: AboutStyle.versionsBlock.coreVersion.fontSize
|
||||
text: 'Linphone Core ' + CoreManager.version
|
||||
text: 'Core ' + CoreManager.version
|
||||
|
||||
height: parent.heigth / 2
|
||||
width: parent.width
|
||||
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
onActiveFocusChanged: deselect()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue