mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Add source file type to anonymous usage statistics
Contributes to issue CURA-8232.
This commit is contained in:
parent
90eb2bfbdc
commit
77b7a29fca
2 changed files with 6 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue