From 3ee72a53933654e33a96455a9d3c43f461539d4c Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 4 Jul 2017 10:19:11 +0200 Subject: [PATCH] Fixed sending wrong setting for bed adhesion CURA-3858 --- plugins/SliceInfoPlugin/SliceInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index cab329b6f6..83f17dcb27 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -161,7 +161,7 @@ class SliceInfo(Extension): print_settings["support_extruder_nr"] = int(global_container_stack.getProperty("support_extruder_nr", "value")) # Platform adhesion settings - print_settings["platform_adhesion"] = global_container_stack.getProperty("platform_adhesion", "value") + print_settings["adhesion_type"] = global_container_stack.getProperty("adhesion_type", "value") # Shell settings print_settings["wall_line_count"] = global_container_stack.getProperty("wall_line_count", "value")