Skip to content

Commit

Permalink
Merge pull request #1705 from HEXRD/fix-negative-hkl-index
Browse files Browse the repository at this point in the history
Use `hkl_to_str` for consistency
  • Loading branch information
psavery authored Jun 4, 2024
2 parents dc67471 + aa135fe commit 73ff4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexrdgui/reflections_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def update_table(self, only_if_visible=True):
# picks the exclusions by selecting the rows.
with exclusions_off(plane_data):
with tth_max_off(plane_data):
hkls = plane_data.getHKLs(asStr=True)
hkls = [hkl_to_str(x) for x in plane_data.getHKLs()]
d_spacings = plane_data.getPlaneSpacings()
tth = plane_data.getTTh()
powder_intensity = plane_data.powder_intensity
Expand Down

0 comments on commit 73ff4e4

Please sign in to comment.