mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
Add more IMDN in message. Fix dialogs top bar/margins. Fix Video deconding with some devices.
39 lines
709 B
QML
39 lines
709 B
QML
import QtQuick 2.7
|
|
import QtGraphicalEffects 1.12
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
import App.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
DialogPlus {
|
|
id: dialog
|
|
|
|
buttons: [
|
|
TextButtonB {
|
|
text: qsTr('confirm')
|
|
|
|
onClicked: exit(1)
|
|
}
|
|
]
|
|
|
|
buttonsAlignment: Qt.AlignCenter
|
|
flat: true
|
|
showMargins: true
|
|
height: SettingsVideoPreviewStyle.height
|
|
width: SettingsVideoPreviewStyle.width
|
|
|
|
// ---------------------------------------------------------------------------
|
|
Item{
|
|
anchors.fill: parent
|
|
CameraView{
|
|
id: previewLoader
|
|
anchors.centerIn: parent
|
|
height: parent.height
|
|
width: height
|
|
showCloseButton: false
|
|
}
|
|
}
|
|
}
|