Slim things down further in the UI

This commit is contained in:
Aang23 2022-02-23 12:00:34 +01:00
parent c1da3077ca
commit 95357e2755
6 changed files with 10 additions and 46 deletions

View file

@ -16,7 +16,7 @@ namespace processing
std::string output_file,
nlohmann::json parameters)
{
satdumpUiStatus = OFFLINE_PROCESSING;
isProcessing = true;
logger->info("Starting processing pipeline " + downlink_pipeline + "...");
logger->debug("Input file (" + input_level + ") : " + input_file);
@ -34,6 +34,6 @@ namespace processing
logger->critical("Pipeline " + downlink_pipeline + " does not exist!");
logger->info("Done! Goodbye");
satdumpUiStatus = MAIN_MENU;
isProcessing = false;
}
}