| 4042 | } |
| 4043 | |
| 4044 | void EventBrowser::SetHighlightedAnnotation(const rdcstr &annotationPath) |
| 4045 | { |
| 4046 | m_Model->SetAnnotationPath(annotationPath); |
| 4047 | |
| 4048 | // automatically show the annotation column if it's hidden |
| 4049 | if(!annotationPath.isEmpty() && ui->events->header()->isSectionHidden(COL_ANNOTATION)) |
| 4050 | SetAnnotationColumnVisible(true); |
| 4051 | } |
| 4052 | |
| 4053 | void EventBrowser::OnCaptureLoaded() |
| 4054 | { |
no test coverage detected