Commit c315ff4e authored by Don Gagne's avatar Don Gagne

Merge pull request #1425 from DonLakeFlyer/ProgressFix

Remove qDebug's
parents 0d7ded40 c7099d7a
...@@ -450,11 +450,9 @@ void UASParameterCommsMgr::receivedParameterUpdate(int uas, int compId, int para ...@@ -450,11 +450,9 @@ void UASParameterCommsMgr::receivedParameterUpdate(int uas, int compId, int para
int progDiv = paramCount / 100; int progDiv = paramCount / 100;
if ((paramId % progDiv) == 0) { if ((paramId % progDiv) == 0) {
qDebug() << paramId << paramCount;
emit parameterListProgress((float)paramId / (float)paramCount); emit parameterListProgress((float)paramId / (float)paramCount);
} }
if (paramId == paramCount) { if (paramId == paramCount) {
qDebug() << "List complete";
emit parameterListProgress(0.0f); emit parameterListProgress(0.0f);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment