mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
re-add ColorDialog class
to avoid api breaks
This commit is contained in:
parent
4eb0ba9861
commit
e9cc6532d7
2 changed files with 19 additions and 0 deletions
|
@ -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
|
||||
|
|
12
resources/qml/Dialogs/ColorDialog.qml
Normal file
12
resources/qml/Dialogs/ColorDialog.qml
Normal 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
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue