CustomCameraSpecifics.qml 455 B

123456789101112131415161718192021
  1. // Copyright (C) 2022 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick 2.15
  4. import QtQuick.Layouts 1.15
  5. import HelperWidgets 2.0
  6. Column {
  7. width: parent.width
  8. // Custom camera doesn't have any meaningful designable properties itself, so only add
  9. // the generic camera section
  10. CameraSection {
  11. width: parent.width
  12. }
  13. NodeSection {
  14. width: parent.width
  15. }
  16. }