From 31b97ae6007985955a7f406c405570787408a076 Mon Sep 17 00:00:00 2001 From: Brendan LE GLAUNEC Date: Tue, 26 Sep 2017 10:46:29 +0200 Subject: [PATCH] v1.2.3: Reduce time overlay font size to avoid triggering motion events (#34) --- src/pipeline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipeline.cpp b/src/pipeline.cpp index c053f38..94fcdef 100644 --- a/src/pipeline.cpp +++ b/src/pipeline.cpp @@ -23,10 +23,10 @@ std::string time_overlay(std::shared_ptr &config) { if (config->time) { return " ! timeoverlay halignment=left valignment=top " "shaded-background=true " - "font-desc=\"Sans 24\" ! " + "font-desc=\"Sans 10\" ! " "clockoverlay halignment=right valignment=top " "shaded-background=true " - "font-desc=\"Sans 24\""; + "font-desc=\"Sans 10\""; } return ""; }