mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 23:42:43 +02:00
32 lines
672 B
QML
32 lines
672 B
QML
//
|
|
// AssetDialog.qml
|
|
//
|
|
// Created by David Rowe on 18 Apr 2017
|
|
// Copyright 2017 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.8
|
|
|
|
import "../../styles-uit"
|
|
import "../../windows"
|
|
|
|
ScrollingWindow {
|
|
id: root
|
|
resizable: false
|
|
implicitWidth: 480
|
|
implicitHeight: 706
|
|
objectName: "aboutDialog"
|
|
destroyOnCloseButton: true
|
|
destroyOnHidden: true
|
|
visible: true
|
|
minSize: Qt.vector2d(480, 706)
|
|
title: "About"
|
|
|
|
TabletAboutDialog {
|
|
width: pane.width
|
|
height: pane.height
|
|
}
|
|
}
|