From 874092a9d07d9a076b636093f61986c079154c2a Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Fri, 31 Jul 2020 17:26:53 +0200 Subject: [PATCH] gui sub frame index now shows --- slsDetectorGui/src/qDrawPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsDetectorGui/src/qDrawPlot.cpp b/slsDetectorGui/src/qDrawPlot.cpp index 68234cc6e..7a553abe6 100644 --- a/slsDetectorGui/src/qDrawPlot.cpp +++ b/slsDetectorGui/src/qDrawPlot.cpp @@ -813,7 +813,7 @@ void qDrawPlot::GetData(detectorData *data, uint64_t frameIndex, plotTitlePrefix + QString(data->fileName.c_str()).section('/', -1); indexTitle = QString("%1").arg(frameIndex); if ((int)subFrameIndex != -1) { - indexTitle = QString("%1 %2").arg(frameIndex, subFrameIndex); + indexTitle = QString("%1 %2").arg(frameIndex).arg(subFrameIndex); } completeImage = data->completeImage;