diff view/View.cpp @ 389:2ed4e572d0d4

* Attempt fix for #1914752 export image has holes (1.0 and 1.2)
author Chris Cannam
date Tue, 20 May 2008 10:40:20 +0000
parents 881470f9ca48
children b83db9792d11
line wrap: on
line diff
--- a/view/View.cpp	Tue May 20 08:37:46 2008 +0000
+++ b/view/View.cpp	Tue May 20 10:40:20 2008 +0000
@@ -2206,8 +2206,12 @@
 
             std::cerr << "Centre frame now: " << m_centreFrame << " drawing to " << chunk.x() + x + xorigin << ", " << chunk.width() << std::endl;
 
+            (*i)->setSynchronousPainting(true);
+
 	    (*i)->paint(this, paint, chunk);
 
+            (*i)->setSynchronousPainting(false);
+
 	    paint.restore();
 	}
     }