mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 07:23:43 +00:00
Bugfixes TDR
This commit is contained in:
parent
8d382e8b9c
commit
5ddc3d6794
5 changed files with 68 additions and 6 deletions
|
|
@ -74,6 +74,12 @@ Trace *TraceMarker::trace()
|
|||
|
||||
QString TraceMarker::readableData()
|
||||
{
|
||||
if(!parentTrace) {
|
||||
return "";
|
||||
}
|
||||
if(position < parentTrace->minX() || position > parentTrace->maxX()) {
|
||||
return "";
|
||||
}
|
||||
if(isTimeDomain()) {
|
||||
switch(type) {
|
||||
case Type::Manual: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue