Index: src/core/qgsmaprenderer.cpp =================================================================== --- src/core/qgsmaprenderer.cpp (revision 15597) +++ src/core/qgsmaprenderer.cpp (working copy) @@ -263,7 +263,9 @@ renderTime.start(); #endif - mRenderContext.setDrawEditingInformation( !mOverview ); + if( mOverview ) + mRenderContext.setDrawEditingInformation( !mOverview ); + mRenderContext.setPainter( painter ); mRenderContext.setCoordinateTransform( 0 ); //this flag is only for stopping during the current rendering progress, Index: src/core/qgsrendercontext.cpp =================================================================== --- src/core/qgsrendercontext.cpp (revision 15597) +++ src/core/qgsrendercontext.cpp (working copy) @@ -21,7 +21,7 @@ QgsRenderContext::QgsRenderContext() : mPainter( 0 ), mCoordTransform( 0 ), - mDrawEditingInformation( false ), + mDrawEditingInformation( true ), mForceVectorOutput( false ), mRenderingStopped( false ), mScaleFactor( 1.0 ), Index: src/CMakeLists.txt =================================================================== --- src/CMakeLists.txt (revision 15597) +++ src/CMakeLists.txt (working copy) @@ -1,4 +1,4 @@ -SUBDIRS(astyle core analysis ui gui app providers plugins helpviewer) +SUBDIRS( core ui gui app providers ) IF (WITH_BINDINGS) SUBDIRS(python)