Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2019-01-10 15:59:22 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2019-01-10 15:59:22 +0300
commit03b4121d2289a89d0b779309190bd3d0b8d4efa6 (patch)
tree5852b9ee5e7c61f8b243a21a7d7c5dc76e6439f3 /resources/qml/ActionPanel/SliceProcessWidget.qml
parent8f5309c5a5e3d481ec10804591fe3c6a87009958 (diff)
Fix broken shortcut for slice or stop slicing.
Diffstat (limited to 'resources/qml/ActionPanel/SliceProcessWidget.qml')
-rw-r--r--resources/qml/ActionPanel/SliceProcessWidget.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml
index 1695be8748..0f415a6a2d 100644
--- a/resources/qml/ActionPanel/SliceProcessWidget.qml
+++ b/resources/qml/ActionPanel/SliceProcessWidget.qml
@@ -194,7 +194,7 @@ Column
shortcut: "Ctrl+P"
onTriggered:
{
- if (prepareButton.enabled)
+ if (sliceButton.enabled)
{
sliceOrStopSlicing()
}