mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-11 05:58:58 +08:00
Add source file type to anonymous usage statistics
Contributes to issue CURA-8232.
This commit is contained in:
parent
90eb2bfbdc
commit
77b7a29fca
@ -229,6 +229,11 @@ class SliceInfo(QObject, Extension):
|
|||||||
|
|
||||||
model["model_settings"] = model_settings
|
model["model_settings"] = model_settings
|
||||||
|
|
||||||
|
if node.source_mime_type is None:
|
||||||
|
model["mime_type"] = ""
|
||||||
|
else:
|
||||||
|
model["mime_type"] = node.source_mime_type
|
||||||
|
|
||||||
data["models"].append(model)
|
data["models"].append(model)
|
||||||
|
|
||||||
print_times = print_information.printTimes()
|
print_times = print_information.printTimes()
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
<li><b>Bounding Box:</b> [minimum x, y, z; maximum x, y, z]</li>
|
<li><b>Bounding Box:</b> [minimum x, y, z; maximum x, y, z]</li>
|
||||||
<li><b>Is Helper Mesh:</b> no</li>
|
<li><b>Is Helper Mesh:</b> no</li>
|
||||||
<li><b>Helper Mesh Type:</b> support mesh</li>
|
<li><b>Helper Mesh Type:</b> support mesh</li>
|
||||||
|
<li><b>File type:</b> STL</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user