forked from M-Labs/thermostat
GUI: Text changes #3
|
@ -117,7 +117,7 @@ class Thermostat(QObject, metaclass=PropertyMeta):
|
||||||
async def save_cfg(self, ch):
|
async def save_cfg(self, ch):
|
||||||
await self._client.save_config(ch)
|
await self._client.save_config(ch)
|
||||||
self.info_box_trigger.emit(
|
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()
|
@asyncSlot()
|
||||||
|
|
|
@ -332,7 +332,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
||||||
|
|
||||||
case PIDAutotuneState.STATE_FAILED:
|
case PIDAutotuneState.STATE_FAILED:
|
||||||
self.info_box.display_info_box(
|
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()
|
self.info_box.show()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue