From 16b5193216fb15a7deac3c388b20c92ec7fdf4ee Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sat, 16 Nov 2019 20:03:17 -0500 Subject: [PATCH] Ellipses check checks text first --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index ff7569d..7f10029 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -10302,11 +10302,11 @@ void MainWindow::processIdleActivity() { continue; } - if(last.utcTimestamp.secsTo(now) < computePeriodForSubmode(last.submode) * 1.50){ + if(last.text == " . . . "){ continue; } - if(last.text == " . . . "){ + if(last.utcTimestamp.secsTo(now) < computePeriodForSubmode(last.submode) * 1.50){ continue; }