mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -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
|
||||
|
||||
if node.source_mime_type is None:
|
||||
model["mime_type"] = ""
|
||||
else:
|
||||
model["mime_type"] = node.source_mime_type
|
||||
|
||||
data["models"].append(model)
|
||||
|
||||
print_times = print_information.printTimes()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue