Commit 5a5deef8 authored by DonLakeFlyer's avatar DonLakeFlyer

Correct creation of MAVLinkDecoder

parent d000ecef
...@@ -296,7 +296,7 @@ QString MainWindow::_getWindowGeometryKey() ...@@ -296,7 +296,7 @@ QString MainWindow::_getWindowGeometryKey()
#ifndef __mobile__ #ifndef __mobile__
MAVLinkDecoder* MainWindow::_mavLinkDecoderInstance(void) MAVLinkDecoder* MainWindow::_mavLinkDecoderInstance(void)
{ {
if (_mavlinkDecoder) { if (!_mavlinkDecoder) {
_mavlinkDecoder = new MAVLinkDecoder(qgcApp()->toolbox()->mavlinkProtocol()); _mavlinkDecoder = new MAVLinkDecoder(qgcApp()->toolbox()->mavlinkProtocol());
connect(_mavlinkDecoder, &MAVLinkDecoder::valueChanged, this, &MainWindow::valueChanged); connect(_mavlinkDecoder, &MAVLinkDecoder::valueChanged, this, &MainWindow::valueChanged);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment