Fix typo causing RX radio device to remain open. (#918)
* Fix typo causing RX radio device to remain open. * Add PR #918 to changelog.pull/919/head
parent
1ef4c95128
commit
dc9a693524
|
@ -798,6 +798,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
|
|||
* FreeDV Reporter: Force explicit background color (avoids unwanted mouseover highlights on Linux). (PR #911)
|
||||
* Fix compiler errors when using wxWidgets 3.0. (PR #914)
|
||||
* Unit tests: Increase sleep time before killing recording to resolve macOS test failures. (PR #917)
|
||||
* Fix typo causing RX radio device to remain open. (PR #918)
|
||||
|
||||
## V2.0.0 June 2025
|
||||
|
||||
|
|
|
@ -2500,7 +2500,7 @@ void MainFrame::stopRxStream()
|
|||
rxOutSoundDevice.reset();
|
||||
}
|
||||
|
||||
delete m_txThread;
|
||||
delete m_rxThread;
|
||||
m_rxThread = nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue