Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemco Burema <r.burema@ultimaker.com>2018-08-21 12:01:35 +0300
committerRemco Burema <r.burema@ultimaker.com>2018-08-21 12:01:35 +0300
commitca25638c07d699002980dab7564a9b5743582b50 (patch)
treeca5399e0697ee303b0d54492566879d35c192f6c /plugins/UFPWriter
parent1079a9be2c72de8d4c32895701e9842e1521fd09 (diff)
.ufp should also not show up in recent files since it's a gcode format
Diffstat (limited to 'plugins/UFPWriter')
-rw-r--r--plugins/UFPWriter/UFPWriter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py
index 9344bf54da..ceb9d79087 100644
--- a/plugins/UFPWriter/UFPWriter.py
+++ b/plugins/UFPWriter/UFPWriter.py
@@ -20,7 +20,7 @@ catalog = i18nCatalog("cura")
class UFPWriter(MeshWriter):
def __init__(self):
- super().__init__()
+ super().__init__(add_to_recent_files = False)
self._snapshot = None
Application.getInstance().getOutputDeviceManager().writeStarted.connect(self._createSnapshot)