From 9235d1d4bc31031bffcea751432d813bb91c72a4 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Thu, 6 Nov 2025 11:02:14 +0100 Subject: [PATCH] jfjoch_viewer: Slightly increase precision of resolution of powder rings (4 digits) --- viewer/JFJochViewerSidePanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer/JFJochViewerSidePanel.cpp b/viewer/JFJochViewerSidePanel.cpp index 91c9a5d3..f5bf49ea 100644 --- a/viewer/JFJochViewerSidePanel.cpp +++ b/viewer/JFJochViewerSidePanel.cpp @@ -231,7 +231,7 @@ void JFJochViewerSidePanel::findBeamCenterClicked() { void JFJochViewerSidePanel::setRings(const QVector &v) { QString txt; for (float i : v) { - txt += QString::number(i, 'f', 3) + ","; + txt += QString::number(i, 'f', 4) + ","; } resRingsCheckBox->setChecked(true);