Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
af1df4fb
Commit
af1df4fb
authored
Oct 20, 2014
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor error in gcview
parent
2f54d91a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcview.py
printrun/gcview.py
+2
-2
No files found.
printrun/gcview.py
View file @
af1df4fb
...
@@ -202,7 +202,7 @@ class GcodeViewPanel(wxGLPanel):
...
@@ -202,7 +202,7 @@ class GcodeViewPanel(wxGLPanel):
wx
.
CallAfter
(
self
.
Refresh
)
wx
.
CallAfter
(
self
.
Refresh
)
def
layerup
(
self
):
def
layerup
(
self
):
if
not
self
.
parent
.
model
:
if
not
hasattr
(
self
.
parent
,
"model"
)
or
not
self
.
parent
.
model
:
return
return
max_layers
=
self
.
parent
.
model
.
max_layers
max_layers
=
self
.
parent
.
model
.
max_layers
current_layer
=
self
.
parent
.
model
.
num_layers_to_draw
current_layer
=
self
.
parent
.
model
.
num_layers_to_draw
...
@@ -215,7 +215,7 @@ class GcodeViewPanel(wxGLPanel):
...
@@ -215,7 +215,7 @@ class GcodeViewPanel(wxGLPanel):
wx
.
CallAfter
(
self
.
Refresh
)
wx
.
CallAfter
(
self
.
Refresh
)
def
layerdown
(
self
):
def
layerdown
(
self
):
if
not
self
.
parent
.
model
:
if
not
hasattr
(
self
.
parent
,
"model"
)
or
not
self
.
parent
.
model
:
return
return
current_layer
=
self
.
parent
.
model
.
num_layers_to_draw
current_layer
=
self
.
parent
.
model
.
num_layers_to_draw
new_layer
=
max
(
1
,
current_layer
-
1
)
new_layer
=
max
(
1
,
current_layer
-
1
)
...
...
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