mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 03:59:04 +08: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
@ -791,7 +791,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
||||
self._compressing_print = True
|
||||
## 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""
|
||||
batched_line = ""
|
||||
|
Loading…
x
Reference in New Issue
Block a user