From 42a3e1227aa83455dab9e8ca4fc3b1d98fc124ce Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Tue, 10 Sep 2019 13:36:26 +0200 Subject: [PATCH] Use explicit types for mesh_type qml properties CURA-6683 --- .../PerObjectSettingsTool/PerObjectSettingsPanel.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index 512eeaa29b..f0afcef298 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -18,11 +18,11 @@ Item property var all_categories_except_support: [ "machine_settings", "resolution", "shell", "infill", "material", "speed", "travel", "cooling", "platform_adhesion", "dual", "meshfix", "blackmagic", "experimental"] - readonly property var normal_mesh_type: "" - readonly property var support_mesh_type: "support_mesh" - readonly property var cutting_mesh_type: "cutting_mesh" - readonly property var infill_mesh_type: "infill_mesh" - readonly property var anti_overhang_mesh_type: "anti_overhang_mesh" + readonly property string normal_mesh_type: "" + readonly property string support_mesh_type: "support_mesh" + readonly property string cutting_mesh_type: "cutting_mesh" + readonly property string infill_mesh_type: "infill_mesh" + readonly property string anti_overhang_mesh_type: "anti_overhang_mesh" property var current_mesh_type: normal_mesh_type