From a88bc525308024108b099a2175b1c6031bff765f Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 13 Mar 2017 23:12:37 +0100 Subject: [PATCH] ATV Modulator: reposition text overlay origin point --- plugins/channeltx/modatv/atvmod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channeltx/modatv/atvmod.cpp b/plugins/channeltx/modatv/atvmod.cpp index 5c6835cb7..71957e36f 100644 --- a/plugins/channeltx/modatv/atvmod.cpp +++ b/plugins/channeltx/modatv/atvmod.cpp @@ -856,7 +856,7 @@ void ATVMod::mixImageAndText(cv::Mat& image) baseline += thickness; // position the text in the top left corner - cv::Point textOrg(4, textSize.height+4); + cv::Point textOrg(6, textSize.height+10); // then put the text itself cv::putText(image, m_overlayText, textOrg, fontFace, fontScale, cv::Scalar::all(255*m_running.m_uniformLevel), thickness, CV_AA); }