Skip to content

Commit

Permalink
Merge pull request #852 from neutrons/UI_Precission
Browse files Browse the repository at this point in the history
change d0 significant figures
  • Loading branch information
fanchercm authored Aug 16, 2023
2 parents d57eeaa + b5905f4 commit 54a59c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrs/interface/peak_fitting/gui_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def fill_peak_range_table(self, list_fit_peak_ranges=[],
_label = QTableWidgetItem(list_fit_peak_labels[_index])
self.parent.ui.peak_range_table.setItem(_index, 2, _label)

_value = QTableWidgetItem("{:.3f}".format(list_fit_peak_d0[_index]))
_value = QTableWidgetItem("{:.6f}".format(list_fit_peak_d0[_index]))
self.parent.ui.peak_range_table.setItem(_index, 3, _value)

@staticmethod
Expand Down

2 comments on commit 54a59c4

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitLab pipeline for pyrs-dev has been submitted for this commit: "https://code.ornl.gov/sns-hfir-scse/deployments/pyrs-deploy/-/pipelines/435573"

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitLab pipeline for pyrs has been submitted for this commit: "https://code.ornl.gov/sns-hfir-scse/deployments/pyrs-deploy/-/pipelines/435949"

Please sign in to comment.