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:
authorLipu Fei <lipu.fei815@gmail.com>2018-08-17 11:53:01 +0300
committerLipu Fei <lipu.fei815@gmail.com>2018-08-17 11:53:30 +0300
commit1079a9be2c72de8d4c32895701e9842e1521fd09 (patch)
tree7c2b8e87e1589d8ed90aa713d4c0a943b326f005 /plugins/GCodeWriter
parent013032279db10b858b5bbd8b2115de762723665e (diff)
Do not add saved gcodes to recent files list
Diffstat (limited to 'plugins/GCodeWriter')
-rw-r--r--plugins/GCodeWriter/GCodeWriter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py
index 59e9a29691..5d5e3578cd 100644
--- a/plugins/GCodeWriter/GCodeWriter.py
+++ b/plugins/GCodeWriter/GCodeWriter.py
@@ -47,7 +47,7 @@ class GCodeWriter(MeshWriter):
_setting_keyword = ";SETTING_"
def __init__(self):
- super().__init__()
+ super().__init__(add_to_recent_files = False)
self._application = Application.getInstance()