From 62438809827036880edf3da0fd6279f0cbd9fff8 Mon Sep 17 00:00:00 2001 From: jbernardis Date: Wed, 6 May 2015 19:37:51 -0400 Subject: [PATCH] Configtool: also save thermistor tables when only saving config.h. Previously this was only done when saving a board file ... but these tables can also change when general settings are changed. --- configtool.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configtool.py b/configtool.py index eac380b..d3deda3 100755 --- a/configtool.py +++ b/configtool.py @@ -339,6 +339,8 @@ class ConfigFrame(wx.Frame): if self.pgBoard.isModified() and self.pgBoard.isValid(): if not self.pgBoard.saveConfigFile(bfn): return False + else: + self.pgBoard.generateTempTables() pfn = self.pgPrinter.getFileName() if self.pgPrinter.isModified() and self.pgPrinter.isValid():