Skip to content

Commit

Permalink
Fix incorrect spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom94 committed Sep 9, 2017
1 parent 6f36ebf commit 2acf5a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ int mainFunc(int argc, char* argv[]) {
}

// Apply parameter flags
if (exposureFlag) { app->setExposure(get(exposureFlag)); }
if (filterFlag) { app->setFilter(get(filterFlag)); }
if (metricFlag) { app->setMetric(toMetric(get(metricFlag))); }
if (offsetFlag) { app->setOffset(get(offsetFlag)); }
if (tonemapFlag) { app->setTonemap(toTonemap(get(tonemapFlag))); }
if (exposureFlag) { app->setExposure(get(exposureFlag)); }
if (filterFlag) { app->setFilter(get(filterFlag)); }
if (metricFlag) { app->setMetric(toMetric(get(metricFlag))); }
if (offsetFlag) { app->setOffset(get(offsetFlag)); }
if (tonemapFlag) { app->setTonemap(toTonemap(get(tonemapFlag))); }

// Refresh only every 250ms if there are no user interactions.
// This makes an idling tev surprisingly energy-efficient. :)
Expand Down

0 comments on commit 2acf5a0

Please sign in to comment.