Commit 84275254 authored by Basil Huber's avatar Basil Huber

Replaced tab by 4 spaces (in src/ui/HUD.cc)

parent 8e45fe85
......@@ -1361,16 +1361,17 @@ void HUD::copyImage(UASInterface* uas)
if (u)
{
QImage temp_im = u->getImage();
if (temp_im.byteCount() > 0) {
if (temp_im.byteCount() > 0)
{
this->glImage = temp_im;
// Save to directory if logging is enabled
if (imageLoggingEnabled)
{
temp_im.save(QString("%1/%2.png").arg(imageLogDirectory).arg(imageLogCounter));
imageLogCounter++;
}
}
// Save to directory if logging is enabled
if (imageLoggingEnabled)
{
temp_im.save(QString("%1/%2.png").arg(imageLogDirectory).arg(imageLogCounter));
imageLogCounter++;
}
}
}
}
......
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