forked from qt-creator/qt-creator
39eebaf077
Extract a part responsible for creating scripts to ScriptEditorForm, which can be used in both: Connection Editor and Property Editor. Task-number: QDS-10449 Change-Id: Ie6b8b4becfee4ed05760e31b742d8d0a9b79a113 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
21 lines
440 B
QML
21 lines
440 B
QML
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import HelperWidgets 2.0
|
|
|
|
Column {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
AnimationSection {
|
|
showDuration: false
|
|
}
|
|
|
|
ScriptSection {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
}
|