mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-21 13:58:29 +00:00
43 lines
1,018 B
QML
43 lines
1,018 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
import App.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
TabContainer {
|
|
Column {
|
|
spacing: SettingsWindowStyle.forms.spacing
|
|
width: parent.width
|
|
|
|
// -------------------------------------------------------------------------
|
|
// Logs.
|
|
// -------------------------------------------------------------------------
|
|
|
|
Form {
|
|
title: qsTr('logsTitle')
|
|
width: parent.width
|
|
|
|
FormLine {
|
|
FormGroup {
|
|
label: qsTr('logsFolderLabel')
|
|
|
|
FileChooserButton {
|
|
selectedFile: SettingsModel.logsFolder
|
|
selectFolder: true
|
|
|
|
onAccepted: SettingsModel.logsFolder = selectedFile
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
// Internal features.
|
|
// -------------------------------------------------------------------------
|
|
|
|
// Nothing for the moment.
|
|
}
|
|
}
|