Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pyMKcam
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
pyMKcam
Commits
30b554aa
Commit
30b554aa
authored
Aug 20, 2012
by
Lars Kruse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable tolerance controls for "optimize speed with tolerance" corner mode
parent
41f8fb58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
GCodeParameters.py
pycam/Plugins/GCodeParameters.py
+2
-1
No files found.
pycam/Plugins/GCodeParameters.py
View file @
30b554aa
...
...
@@ -228,7 +228,8 @@ class GCodeCornerStyle(pycam.Plugins.PluginBase):
self
.
core
.
get
(
"unregister_parameter"
)(
"toolpath_processor"
,
name
)
def
update_widgets
(
self
,
widget
=
None
):
enable_tolerances
=
(
self
.
path_mode
.
get_value
()
==
"optimize_speed"
)
enable_tolerances
=
(
self
.
path_mode
.
get_value
()
==
\
CORNER_STYLE_OPTIMIZE_TOLERANCE
)
controls
=
(
self
.
motion_tolerance
,
self
.
naive_tolerance
)
for
control
in
controls
:
control
.
get_widget
()
.
set_sensitive
(
enable_tolerances
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment