mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 16:41:02 +02:00
Fix Desktop double windows
This commit is contained in:
parent
8a5d80de31
commit
c402cb2c19
1 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
||||||
|
//
|
||||||
|
// AdvancedPreferencesDialog.qml
|
||||||
|
//
|
||||||
|
// Created by Brad Hefta-Gaub on 20 Jan 2018
|
||||||
|
// Copyright 2018 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
import QtQuick 2.5
|
||||||
|
import Qt.labs.settings 1.0
|
||||||
|
|
||||||
|
import "../../dialogs"
|
||||||
|
|
||||||
|
PreferencesDialog {
|
||||||
|
id: root
|
||||||
|
objectName: "GraphicsPreferencesDialog"
|
||||||
|
title: "Graphics Settings"
|
||||||
|
showCategories: ["Graphics Quality" ]
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue