Commit 1ae83f6f authored by Ronan Abhamon's avatar Ronan Abhamon

feat(ui/views/App/Main/Dialogs/About): supports version copy/paste

parent 66182739
......@@ -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()
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment