mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-03 05:14:44 +01:00
M17 decoder fix
This commit is contained in:
parent
84291deaf6
commit
93b28d1495
@ -214,10 +214,10 @@ private:
|
|||||||
|
|
||||||
if (ImGui::Checkbox(CONCAT("Show Reference Lines##m17_showlines_", _this->name), &_this->showLines)) {
|
if (ImGui::Checkbox(CONCAT("Show Reference Lines##m17_showlines_", _this->name), &_this->showLines)) {
|
||||||
if (_this->showLines) {
|
if (_this->showLines) {
|
||||||
_this->diag.lines.push_back(-0.75f);
|
diag.lines.push_back(-1.0);
|
||||||
_this->diag.lines.push_back(-0.25f);
|
diag.lines.push_back(-1.0/3.0);
|
||||||
_this->diag.lines.push_back(0.25f);
|
diag.lines.push_back(1.0/3.0);
|
||||||
_this->diag.lines.push_back(0.75f);
|
diag.lines.push_back(1.0);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
_this->diag.lines.clear();
|
_this->diag.lines.clear();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user