Browse Source

Only show line-starts in non-legacy OpenGL mode.

CURA-7981
Remco Burema 4 years ago
parent
commit
1e155662d9
1 changed files with 9 additions and 6 deletions
  1. 9 6
      plugins/SimulationView/SimulationViewMenuComponent.qml

+ 9 - 6
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"
+                        });
+                    }
                 }
             }