ColorDialog.qml 438 B

1234567891011121314151617
  1. // Copyright (c) 2023 UltiMaker
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import QtQuick.Controls 2.15
  5. import QtQuick.Layouts 1.3
  6. import QtQuick.Dialogs
  7. // due for deprecation, use Qt Color Dialog instead
  8. ColorDialog
  9. {
  10. id: root
  11. property alias color: root.selectedColor
  12. Component.onCompleted: { console.warn("Cura.ColorDialog is deprecated, use the QtQuick's ColorDialog instead"); }
  13. }