Commit e990f658 authored by Lars Kruse's avatar Lars Kruse

disable the GCodeTouchOff plugin for now

value handling needs to be fixed
parent 753bcce0
...@@ -22,6 +22,9 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>. ...@@ -22,6 +22,9 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
import pycam.Plugins import pycam.Plugins
import pycam.Utils.log
_log = pycam.Utils.log.get_logger()
class GCodeTouchOff(pycam.Plugins.PluginBase): class GCodeTouchOff(pycam.Plugins.PluginBase):
...@@ -42,6 +45,9 @@ class GCodeTouchOff(pycam.Plugins.PluginBase): ...@@ -42,6 +45,9 @@ class GCodeTouchOff(pycam.Plugins.PluginBase):
("TouchOffPauseExecution", "pause_execution", False)) ("TouchOffPauseExecution", "pause_execution", False))
def setup(self): def setup(self):
# TODO: fix the settings handler to fit into the common dict-model
_log.warn("The plugin 'GCodeTouchOff' is disabled for now - please ignore any related messages")
return False
if self.gui: if self.gui:
self.box = self.gui.get_object("TouchOffBox") self.box = self.gui.get_object("TouchOffBox")
self.box.unparent() self.box.unparent()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment