Change tool change output to True by default

When adding new featuers, the default behaviour should always be so that
things work like before by default... Please don't assume more users
will want a new behaviour, and not noticing this might be dangerous for
users who are used to a certain behaviour.
pull/55/head
vilemnovak 2016-04-21 16:34:13 +02:00
rodzic 4281a7d3b2
commit 3f21527891
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -143,9 +143,9 @@ class machineSettings(bpy.types.PropertyGroup):
block_number_increment = IntProperty(name = "block number increment", description = "how much the block number should increment for the next line", default = 10)
output_tool_definitions = BoolProperty(name = "output tool definitions", description = "output tool definitions", default = False)
output_tool_definitions = BoolProperty(name = "output tool definitions", description = "output tool definitions", default = True)
output_tool_change = BoolProperty(name = "output tool change commands", description = "output tool change commands ie: Tn M06", default = False)
output_tool_change = BoolProperty(name = "output tool change commands", description = "output tool change commands ie: Tn M06", default = True)
output_g43_on_tool_change = BoolProperty(name = "output G43 on tool change", description = "output G43 on tool change line", default = False)