From eb8057ddec4a4b990c653edaeb537885977d03fb Mon Sep 17 00:00:00 2001 From: atse Date: Thu, 11 Jul 2024 12:49:26 +0800 Subject: [PATCH] Don't say settings loaded on settings save --- pytec/pytec/gui/model/thermostat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytec/pytec/gui/model/thermostat.py b/pytec/pytec/gui/model/thermostat.py index 0c9b80f..58fbac7 100644 --- a/pytec/pytec/gui/model/thermostat.py +++ b/pytec/pytec/gui/model/thermostat.py @@ -117,7 +117,7 @@ class Thermostat(QObject, metaclass=PropertyMeta): async def save_cfg(self, ch): await self._client.save_config(ch) self.info_box_trigger.emit( - "Settings loaded", f"Channel {ch} Settings has been loaded to flash." + "Settings saved", f"Channel {ch} Settings has been saved to flash." ) @asyncSlot()