comparison 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
comparison
equal deleted inserted replaced
388:881470f9ca48 389:2ed4e572d0d4
2204 paint.save(); 2204 paint.save();
2205 paint.translate(xorigin + x, 0); 2205 paint.translate(xorigin + x, 0);
2206 2206
2207 std::cerr << "Centre frame now: " << m_centreFrame << " drawing to " << chunk.x() + x + xorigin << ", " << chunk.width() << std::endl; 2207 std::cerr << "Centre frame now: " << m_centreFrame << " drawing to " << chunk.x() + x + xorigin << ", " << chunk.width() << std::endl;
2208 2208
2209 (*i)->setSynchronousPainting(true);
2210
2209 (*i)->paint(this, paint, chunk); 2211 (*i)->paint(this, paint, chunk);
2212
2213 (*i)->setSynchronousPainting(false);
2210 2214
2211 paint.restore(); 2215 paint.restore();
2212 } 2216 }
2213 } 2217 }
2214 2218