mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 07:56:22 -06:00
Fix problem with very slow gcode sending
CURA-4850
This commit is contained in:
parent
4c474c9619
commit
172b4e57a4
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice):
|
|||
if batched_lines_count >= max_chars_per_line:
|
||||
file_data_bytes_list.append(self._compressDataAndNotifyQt("".join(batched_lines)))
|
||||
batched_lines = []
|
||||
batched_lines_count
|
||||
batched_lines_count = 0
|
||||
|
||||
# Don't miss the last batch (If any)
|
||||
if len(batched_lines) != 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue