diff --git a/pytec/pytec/gui/model/thermostat.py b/pytec/pytec/gui/model/thermostat.py index 4f2c195..75615a2 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( - "Config loaded", f"Channel {ch} Config has been loaded from flash." + "Config saved", f"Channel {ch} Config has been saved from flash." ) @asyncSlot() diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index e2d5312..2393d0a 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -332,7 +332,7 @@ class MainWindow(QtWidgets.QMainWindow): case PIDAutotuneState.STATE_FAILED: self.info_box.display_info_box( - "PID Autotune Failed", f"Channel {ch} PID Autotune is failed." + "PID Autotune Failed", f"Channel {ch} PID Autotune has failed." ) self.info_box.show()