mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 13:18:06 +00:00
29 lines
508 B
QML
29 lines
508 B
QML
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls.Basic as Control
|
|
import SettingsCpp 1.0
|
|
import Linphone
|
|
|
|
AbstractSettingsLayout {
|
|
width: parent?.width
|
|
contentModel: [
|
|
{
|
|
title: qsTr("Réseau"),
|
|
subTitle: "",
|
|
contentComponent: content
|
|
}
|
|
]
|
|
Component {
|
|
id: content
|
|
ColumnLayout {
|
|
spacing: 40 * DefaultStyle.dp
|
|
SwitchSetting {
|
|
Layout.fillWidth: true
|
|
titleText: qsTr("Autoriser l'IPv6")
|
|
propertyName: "ipv6Enabled"
|
|
propertyOwner: SettingsCpp
|
|
}
|
|
}
|
|
}
|
|
}
|