mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
30 lines
527 B
QML
30 lines
527 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
import App.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
DialogPlus {
|
|
id: dialog
|
|
|
|
buttons: [
|
|
TextButtonB {
|
|
text: qsTr('confirm')
|
|
|
|
onClicked: exit(1)
|
|
}
|
|
]
|
|
|
|
centeredButtons: true
|
|
height: SettingsVideoPreviewStyle.height
|
|
width: SettingsVideoPreviewStyle.width
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
CameraPreview {
|
|
anchors.fill: parent
|
|
}
|
|
}
|