Skip to content

Commit

Permalink
0.2 mm frame width for now
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5471 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed May 18, 2006
1 parent 0fecc91 commit 4e83218
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/composer/qgscomposermap.cpp
Expand Up @@ -293,7 +293,9 @@ void QgsComposerMap::draw ( QPainter & painter )

// Draw frame around
if ( mFrame ) {
painter.setPen( QPen(QColor(0,0,0), 1) );
QPen pen(QColor(0,0,0));
pen.setWidthF(0.2);
painter.setPen( pen );
painter.setBrush( Qt::NoBrush );
painter.save();
painter.translate ( Q3CanvasRectangle::x(), Q3CanvasRectangle::y() );
Expand Down

0 comments on commit 4e83218

Please sign in to comment.