From 1e155662d9405f82d980d4b4ed9a0848ab280627 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 2 Feb 2021 15:14:54 +0100 Subject: [PATCH] Only show line-starts in non-legacy OpenGL mode. CURA-7981 --- .../SimulationViewMenuComponent.qml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/plugins/SimulationView/SimulationViewMenuComponent.qml b/plugins/SimulationView/SimulationViewMenuComponent.qml index 1d5776ccef..d29d4051a4 100644 --- a/plugins/SimulationView/SimulationViewMenuComponent.qml +++ b/plugins/SimulationView/SimulationViewMenuComponent.qml @@ -251,12 +251,15 @@ Cura.ExpandableComponent preference: "layerview/show_infill", colorId: "layerview_infill" }); - typesLegendModel.append({ - label: catalog.i18nc("@label", "Starts"), - initialValue: viewSettings.show_starts, - preference: "layerview/show_starts", - colorId: "layerview_starts" - }); + if (! UM.SimulationView.compatibilityMode) + { + typesLegendModel.append({ + label: catalog.i18nc("@label", "Starts"), + initialValue: viewSettings.show_starts, + preference: "layerview/show_starts", + colorId: "layerview_starts" + }); + } } }