Skip to content

Commit

Permalink
refs #9826. Fix no theta issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jul 8, 2014
1 parent 4f04ba5 commit 40367bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py
Expand Up @@ -601,7 +601,7 @@ def _transfer(self):
theta = split_tail[-1]
tup = tup + ([runno, theta],)
else:
tup = tup + ([runno], 0) # THETA is fictional, but required for sorting,
tup = tup + ([runno, 0],) # THETA is fictional, but required for sorting,


if self.__icat_download:
Expand Down Expand Up @@ -631,12 +631,12 @@ def _transfer(self):

# set the runnumber
item = QtGui.QTableWidgetItem()
item.setText(runnumber)
item.setText(str(runnumber))
self.tableMain.setItem(row, col, item)

# Set the angle
item = QtGui.QTableWidgetItem()
item.setText(angle)
item.setText(str(angle))
self.tableMain.setItem(row, col + 1, item)

# Set the transmission
Expand Down

0 comments on commit 40367bb

Please sign in to comment.