progress changed to double

This commit is contained in:
2020-08-14 12:16:35 +02:00
parent 28ffad223d
commit de69e666a9
10 changed files with 18 additions and 18 deletions

View File

@ -19,7 +19,7 @@ class qDrawPlot : public QWidget, private Ui::PlotObject {
~qDrawPlot();
bool GetIsRunning();
void SetRunning(bool enable);
int GetProgress();
double GetProgress();
int64_t GetCurrentFrameIndex();
void Select1dPlot(bool enable);
void SetPlotTitlePrefix(QString title);
@ -152,7 +152,7 @@ class qDrawPlot : public QWidget, private Ui::PlotObject {
bool disableZoom{false};
int numDiscardBits{0};
int progress{0};
double progress{0};
int64_t currentFrame{0};
mutable std::mutex mPlots;
int64_t currentAcqIndex{0};