git-svn-id: https://svn.code.sf.net/p/freetel/code@788 01035d8c-6547-0410-b346-abe4f9...
authorwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 22 Oct 2012 15:09:37 +0000 (15:09 +0000)
committerwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 22 Oct 2012 15:09:37 +0000 (15:09 +0000)
fdmdv2/src/fdmdv2_plot_waterfall.cpp

index 38ec1faf35112254350977df83d262fcfad4df88..7a9c8c3cf8f4f5842d1b637e68e761f12e47ce31 100644 (file)
@@ -186,7 +186,7 @@ void PlotWaterfall::draw(wxAutoBufferedPaintDC& pDC)
     if(m_newdata)
     {
         m_newdata = false;
-        plotPixelData(pDC);
+        //plotPixelData(pDC);
 //#ifdef _USE_TIMER
         int t = m_rPlot.GetTop();
         int l = m_rPlot.GetLeft();
@@ -196,9 +196,9 @@ void PlotWaterfall::draw(wxAutoBufferedPaintDC& pDC)
         int w2 = w - 1;
         int ht = (h - DATA_LINE_HEIGHT);
 
-        //drawData();     //  m_mDC, PLOT_BOTTOM);
+        drawData();     //  m_mDC, PLOT_BOTTOM);
         m_mDC.StretchBlit(l, t2, w2, ht, &m_mDC, l, t2 + DATA_LINE_HEIGHT, w2, ht - 2);
-//        pDC.Blit(l, t, w, h, &m_mDC, l, t);                                                   // Scroll Up from Bottom
+        // pDC.Blit(l, t, w, h, &m_mDC, l, t);                                                  // Scroll Up from Bottom
         pDC.StretchBlit(l, (h - t) + 4, w, (-h) + 4, &m_mDC, l, t, w, h);                       // Scroll Down from top
 //#endif
         drawGraticule(pDC);