Fixed a bug that caused medium to large sized STLs not to properly report progress when being sliced via the Cura plugin
This commit is contained in:
parent
a149cdc4f5
commit
ef314340fa
1 changed files with 2 additions and 2 deletions
|
|
@ -273,8 +273,8 @@ class CuraPlugin(octoprint.plugin.SlicerPlugin,
|
|||
export=2
|
||||
)
|
||||
while p.returncode is None:
|
||||
line = p.stderr.readline(timeout=0.5)
|
||||
if not line:
|
||||
line = p.stderr.readline()
|
||||
if line is None:
|
||||
if line_seen:
|
||||
break
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue