Bugfixes TDR

This commit is contained in:
Jan Käberich 2020-12-05 13:33:42 +01:00
parent 8d382e8b9c
commit 5ddc3d6794
5 changed files with 68 additions and 6 deletions

View file

@ -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: {