GUI: Text changes #3

Merged
linuswck merged 1 commits from gui_dev-str_changes into gui_dev 2024-07-19 15:36:01 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d244ba392a - Show all commits

View File

@ -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()

View File

@ -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()