mirror of
https://github.com/overte-org/overte.git
synced 2025-04-28 01:35:52 +02:00
19 lines
435 B
QML
19 lines
435 B
QML
import QtQuick 2.5
|
|
import Qt.labs.settings 1.0
|
|
|
|
import "../../dialogs"
|
|
|
|
PreferencesDialog {
|
|
id: root
|
|
objectName: "AudioPreferencesDialog"
|
|
title: "Audio Settings"
|
|
showCategories: ["Audio"]
|
|
property var settings: Settings {
|
|
category: root.objectName
|
|
property alias x: root.x
|
|
property alias y: root.y
|
|
property alias width: root.width
|
|
property alias height: root.height
|
|
}
|
|
}
|
|
|