Skip to content

Commit

Permalink
AnalyzeView: Download Logs Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
HTRamsey committed Dec 16, 2024
1 parent 5b0831e commit a7b9a8f
Show file tree
Hide file tree
Showing 13 changed files with 715 additions and 724 deletions.
1 change: 1 addition & 0 deletions src/API/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ qt_add_library(API STATIC
target_link_libraries(API
PRIVATE
Qt6::Qml
AnalyzeView
FactSystem
GStreamerReceiver
Joystick
Expand Down
2 changes: 2 additions & 0 deletions src/API/QGCCorePlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "HorizontalFactValueGrid.h"
#include "InstrumentValueData.h"
#include "JoystickManager.h"
#include "LogDownloadController.h"
#include "MAVLinkLib.h"
#include "QGCLoggingCategory.h"
#include "QGCOptions.h"
Expand Down Expand Up @@ -237,6 +238,7 @@ QQmlApplicationEngine *QGCCorePlugin::createQmlApplicationEngine(QObject *parent
qmlEngine->addImportPath(QStringLiteral("qrc:/qml"));
qmlEngine->rootContext()->setContextProperty(QStringLiteral("joystickManager"), JoystickManager::instance());
qmlEngine->rootContext()->setContextProperty(QStringLiteral("debugMessageModel"), AppMessages::getModel());
qmlEngine->rootContext()->setContextProperty(QStringLiteral("logDownloadController"), LogDownloadController::instance());
return qmlEngine;
}

Expand Down
4 changes: 0 additions & 4 deletions src/AnalyzeView/AnalyzeView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ Rectangle {
id: geoController
}

LogDownloadController {
id: logController
}

QGCFlickable {
id: buttonScroll
width: buttonColumn.width
Expand Down
Loading

0 comments on commit a7b9a8f

Please sign in to comment.