Skip to content

Commit

Permalink
print logic switch safe
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-droid authored and pfeerick committed Dec 7, 2022
1 parent 42331d9 commit 7c19f89
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions companion/src/modelprinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,9 @@ QString ModelPrinter::printLogicalSwitchLine(int idx)
case LS_FAMILY_STICKY:
result += tr("Sticky") + QString("(%1, %2)").arg(sw1Name).arg(sw2Name);
break;
case LS_FAMILY_SAFE:
result += tr("Safe") + QString("(%1, %2)").arg(sw1Name).arg(sw2Name);
break;
case LS_FAMILY_TIMER:
result += tr("Timer") + QString("(%1, %2)").arg(ValToTim(ls.val1)).arg(ValToTim(ls.val2));
break;
Expand Down

0 comments on commit 7c19f89

Please sign in to comment.