Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make georeferencer canvas nice and smooth
  • Loading branch information
nyalldawson committed Feb 7, 2021
1 parent 97a5237 commit dec709f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/georeferencer/qgsgeorefmainwindow.cpp
Expand Up @@ -995,6 +995,10 @@ void QgsGeoreferencerMainWindow::createMapCanvas()
mCanvas->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
mCanvas->setCanvasColor( Qt::white );
mCanvas->setMinimumWidth( 400 );
mCanvas->setCachingEnabled( true );
mCanvas->setParallelRenderingEnabled( true );
mCanvas->setPreviewJobsEnabled( true );

mCentralLayout->addWidget( mCanvas, 0, 0, 2, 1 );

// set up map tools
Expand Down

0 comments on commit dec709f

Please sign in to comment.