mgear-dev / mgear4

mGear v.4.x.x (python 3 ready) https://mgear4.readthedocs.io
MIT License
259 stars 91 forks source link

Shifter naming issue #225

Closed miquelcampos closed 10 months ago

miquelcampos commented 1 year ago

“control_ctl” bug looks to have been caused by name = “control” in the Component addCtl function. A friend and I resolved it with:

else: name = name.replace(r“{description}”, r””) name = name.replace(r”_”, r””)

miquelcampos commented 10 months ago

looks like it was fixed with #221