Skip to content

Commit

Permalink
Allow global properties in command line
Browse files Browse the repository at this point in the history
  • Loading branch information
BatchDrake committed May 8, 2023
1 parent 8cdc94b commit 5244529
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ProcessForwarder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <UIMediator.h>
#include <SuWidgetsHelpers.h>
#include <Suscan/AnalyzerRequestTracker.h>
#include <SigDiggerHelpers.h>

using namespace SigDigger;

Expand Down Expand Up @@ -186,6 +187,7 @@ ProcessForwarder::setState(ProcessForwarderState state, QString const &msg)
arg = arg.replace(
"%FFTSIZE%",
QString::number(SCAST(int, m_fftSize)));
arg = SigDiggerHelpers::expandGlobalProperties(arg);
correctedList.append(arg);
}

Expand Down

0 comments on commit 5244529

Please sign in to comment.