Skip to content

Commit

Permalink
Fix for ticket #171. The default symbol scale is now 0.5 - not sure
Browse files Browse the repository at this point in the history
why it needs to be that to get symbols of a similar size to the map
canvas, but it works fine.


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5577 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 9, 2006
1 parent e8d4578 commit 775422e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composer/qgscomposermap.cpp
Expand Up @@ -88,7 +88,7 @@ void QgsComposerMap::init ()
mPreviewModeComboBox->setCurrentItem ( Cache );

mWidthScale = 1.0 / mComposition->scale();
mSymbolScale = 1.0;
mSymbolScale = 0.5;
mFontScale = 1.0;

mFrame = true;
Expand Down

0 comments on commit 775422e

Please sign in to comment.