From 306c09e1757312dbdfe44f3acd3aba70acbf17bf Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 2 Apr 2018 00:58:46 +0200 Subject: [PATCH] ScopeXY: moved the draw graticule position in drawing sequence so that it does not flicker --- sdrgui/dsp/scopevisxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrgui/dsp/scopevisxy.cpp b/sdrgui/dsp/scopevisxy.cpp index f8599c070..2677d4690 100644 --- a/sdrgui/dsp/scopevisxy.cpp +++ b/sdrgui/dsp/scopevisxy.cpp @@ -81,11 +81,11 @@ void ScopeVisXY::feed(const SampleVector::const_iterator& cbegin, const SampleVe m_cols = cols; } - drawGraticule(); m_tvScreen->renderImage(0); m_tvScreen->update(); usleep(5000); m_tvScreen->resetImage(m_alphaReset); + drawGraticule(); m_pixelCount = 0; } }