mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Decreased the size of the batches to send, as it froze the interface too much.
This commit is contained in:
parent
7ae8d96775
commit
06fff748e3
1 changed files with 1 additions and 1 deletions
|
@ -791,7 +791,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
||||||
self._compressing_print = True
|
self._compressing_print = True
|
||||||
## Mash the data into single string
|
## Mash the data into single string
|
||||||
|
|
||||||
max_chars_per_line = 1024*1024*2 # 2 MB
|
max_chars_per_line = 1024 * 1024 / 4 # 1 / 4 MB
|
||||||
|
|
||||||
byte_array_file_data = b""
|
byte_array_file_data = b""
|
||||||
batched_line = ""
|
batched_line = ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue