Skip to content

Commit

Permalink
Remove comma so it is not interpreted as a tuple
Browse files Browse the repository at this point in the history
This was causing issues since it was interpreted as a tuple...

Signed-off-by: Patrick Avery <[email protected]>
  • Loading branch information
psavery committed Oct 30, 2024
1 parent 935c43b commit 6110df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexrdgui/image_canvas.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ def beam_vector_changed(self):
# Right now, hexrd doesn't want this to be inf.
# Maybe that will change in the future...
self.iviewer.instr.source_distance = (
beam_config['source_distance']['value'],
beam_config['source_distance']['value']
)

self.update_overlays()
Expand Down

0 comments on commit 6110df0

Please sign in to comment.