Skip to content

Commit

Permalink
gui: include clang-format
Browse files Browse the repository at this point in the history
Signed-off-by: Augusto Berndt <[email protected]>
  • Loading branch information
gudeh committed Feb 12, 2024
1 parent fbfff99 commit 1c2c575
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/src/heatMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

#include "gui/heatMap.h"

#include <QApplication>
#include <algorithm>
#include <fstream>
#include <iomanip>
#include <iostream>

#include "heatMapSetup.h"
#include "utl/Logger.h"
#include <QApplication>

namespace gui {

Expand Down Expand Up @@ -532,11 +532,11 @@ void HeatMapDataSource::ensureMap()

if (build_map || !isPopulated()) {
debugPrint(logger_, utl::GUI, "HeatMap", 1, "Populating map");
QApplication::setOverrideCursor(Qt::WaitCursor);

QApplication::setOverrideCursor(Qt::WaitCursor);
populated_ = populateMap();
QApplication::restoreOverrideCursor();

if (isPopulated()) {
debugPrint(logger_, utl::GUI, "HeatMap", 1, "Correcting map scale");
correctMapScale(map_);
Expand Down

0 comments on commit 1c2c575

Please sign in to comment.