diff --git a/src/VlcTop.cpp b/src/VlcTop.cpp index bd0f4652f9..e855e037b0 100644 --- a/src/VlcTop.cpp +++ b/src/VlcTop.cpp @@ -128,7 +128,8 @@ void VlcTop::writeInfo(const string& filename) { for (const auto& point : sc.points()) { os << "BRDA:" << sc.lineno() << ","; os << "0,"; - os << point->comment() << "_"; + if (point->comment().rfind("toggle") != 0) + os << point->comment() << "_"; os << point_num << ","; os << point->count() << "\n";