mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 06:53:37 +00:00
save/load markers in setup
This commit is contained in:
parent
9ad8def2ea
commit
8d382e8b9c
9 changed files with 229 additions and 28 deletions
|
|
@ -194,6 +194,10 @@ void TraceSmithChart::draw(QPainter &p) {
|
|||
if (limitToSpan && (m->getPosition() < sweep_fmin || m->getPosition() > sweep_fmax)) {
|
||||
continue;
|
||||
}
|
||||
if(m->getPosition() < trace->minX() || m->getPosition() > trace->maxX()) {
|
||||
// marker not in trace range
|
||||
continue;
|
||||
}
|
||||
auto coords = m->getData();
|
||||
coords *= smithCoordMax;
|
||||
auto symbol = m->getSymbol();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue