Fix Stops and Delays on the timing bar.

This commit is contained in:
Jason Felds
2011-07-17 23:58:22 -04:00
parent acbf2e9aa7
commit 0944948cad
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1310,7 +1310,7 @@ vector<RString> TimingData::ToVectorString(TimingSegmentType tst,
if (tst == SEGMENT_STOP_DELAY)
{
StopSegment *seg = static_cast<StopSegment *>(segs[i]);
if (seg->GetDelay() == isDelay)
if (seg->GetDelay() != isDelay)
continue;
}
ret.push_back(segs[i]->ToString(dec));