diff --git a/irrad_control/main.py b/irrad_control/main.py index 5985f49e..dfca1e7f 100644 --- a/irrad_control/main.py +++ b/irrad_control/main.py @@ -376,6 +376,10 @@ def handle_data(self, data): elif data['data']['status'] == 'finished': self.control_tab.scan_actions(data['data']['status']) + + elif data['meta']['type'] == 'temp': + + self.monitor_tab.plots[server]['temp_plot'].set_data(data) def send_cmd(self, hostname, target, cmd, cmd_data=None, check_reply=True): """Send a command *cmd* to a target *target* running within the server or interpreter process.