mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 23:42:43 +02:00
19 lines
481 B
QML
19 lines
481 B
QML
import QtQuick 2.5
|
|
import Qt.labs.settings 1.0
|
|
|
|
import "../../dialogs"
|
|
|
|
PreferencesDialog {
|
|
id: root
|
|
objectName: "AvatarPreferencesDialog"
|
|
title: "Avatar Settings"
|
|
showCategories: [ "Avatar Basics", "Avatar Tuning", "Avatar Camera" ]
|
|
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
|
|
}
|
|
}
|
|
|