patch_for_bug__2230.diff

sunilkcube -, 2011-03-25 03:54 AM

Download (1.35 KB)

View differences:

src/core/qgsmaprenderer.cpp (working copy)
263 263
  renderTime.start();
264 264
#endif
265 265

  
266
  mRenderContext.setDrawEditingInformation( !mOverview );
266
  if( mOverview )
267
     mRenderContext.setDrawEditingInformation( !mOverview );
268
  
267 269
  mRenderContext.setPainter( painter );
268 270
  mRenderContext.setCoordinateTransform( 0 );
269 271
  //this flag is only for stopping during the current rendering progress,
src/core/qgsrendercontext.cpp (working copy)
21 21
QgsRenderContext::QgsRenderContext()
22 22
    : mPainter( 0 ),
23 23
    mCoordTransform( 0 ),
24
    mDrawEditingInformation( false ),
24
    mDrawEditingInformation( true ),
25 25
    mForceVectorOutput( false ),
26 26
    mRenderingStopped( false ),
27 27
    mScaleFactor( 1.0 ),
src/CMakeLists.txt (working copy)
1
SUBDIRS(astyle core analysis ui gui app providers plugins helpviewer)
1
SUBDIRS( core  ui gui app providers  )
2 2

  
3 3
IF (WITH_BINDINGS)
4 4
  SUBDIRS(python)