Skip to content

Commit

Permalink
Remove incorrect x axis label "TOF bins"
Browse files Browse the repository at this point in the history
  • Loading branch information
robbietuk committed Aug 31, 2024
1 parent 33a0106 commit a54bc06
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def update_display_image(self):
f"TOF bin: {self.UI_groupbox_projdata_dimensions.value(ProjDataDims.TIMING_POS)}")
ax.yaxis.set_label_text("Views/projection angle")
ax.xaxis.set_label_text("Tangential positions")
ax.xaxis.set_label_text("TOF bins")
elif self.viewgram_radio_button.isChecked():
image = self.get_viewgram_numpy_array()
ax.title.set_text(
Expand All @@ -191,7 +190,6 @@ def update_display_image(self):
f"TOF bin: {self.UI_groupbox_projdata_dimensions.value(ProjDataDims.TIMING_POS)}")
ax.yaxis.set_label_text("Axial positions")
ax.xaxis.set_label_text("Tangential positions")
ax.xaxis.set_label_text("TOF bins")
else:
msg = f"Error: No radio button is checked... How did you get here?\n"
raise Exception(msg)
Expand Down

0 comments on commit a54bc06

Please sign in to comment.