re-add ColorDialog class

to avoid api breaks
This commit is contained in:
c.lamboo 2023-10-10 12:00:55 +02:00
parent 4eb0ba9861
commit e9cc6532d7
2 changed files with 19 additions and 0 deletions

View file

@ -494,6 +494,13 @@ Item
shortcut: fileProviderModel.count == 1 ? StandardKey.Open : ""
}
Action
{
id: arrangeSelectionAction
text: catalog.i18nc("@action:inmenu menubar:edit", "Arrange Selection")
onTriggered: Printer.arrangeSelection()
}
Action
{
id: newProjectAction

View file

@ -0,0 +1,12 @@
// Copyright (c) 2023 UltiMaker
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.3
import QtQuick.Dialogs
// due for deprication, use Qt Color Dialog instead
ColorDialog
{
}