Skip to content

Commit

Permalink
refs #10113. Set angle to none.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Aug 18, 2014
1 parent 56e6bac commit eefb823
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py
Expand Up @@ -898,6 +898,11 @@ def _do_run(self, runno, row, which):
transmission_ws = mtd[transrun_named]

angle = str(self.tableMain.item(row, which * 5 + 1).text())

# Explititly set the angle to None so that the workflow algorithm doesn't try to interpret it.
if not angle:
angle = None

loadedRun = runno
if load_live_runs.is_live_run(runno):
load_live_runs.get_live_data(config['default.instrument'], frequency = self.live_freq, accumulation = self.live_method)
Expand Down

0 comments on commit eefb823

Please sign in to comment.