Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfox-rushc committed Feb 14, 2024
2 parents c61ab7a + 960638f commit efbd4d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gui/src/heatMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#include "gui/heatMap.h"

#include <QApplication>
#include <algorithm>
#include <fstream>
#include <iomanip>
Expand Down Expand Up @@ -531,7 +532,10 @@ void HeatMapDataSource::ensureMap()

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

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

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

0 comments on commit efbd4d0

Please sign in to comment.