From 7bc35cecb7e0169971705c055a264207f1e25095 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 21 Apr 2014 10:48:41 -0700 Subject: [PATCH] Don't show a CPS value for lines under 100 ms long --- src/grid_column.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grid_column.cpp b/src/grid_column.cpp index 5e83a96e3..07b79c98d 100644 --- a/src/grid_column.cpp +++ b/src/grid_column.cpp @@ -265,7 +265,7 @@ public: int duration = d->End - d->Start; auto const& text = d->Text.get(); - if (duration <= 0 || text.size() > static_cast(duration)) + if (duration <= 100 || text.size() > static_cast(duration)) return -1; int ignore = agi::IGNORE_NONE;