Skip to content

Commit

Permalink
fix bux with symbol background transparency
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@4722 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jan 23, 2006
1 parent eeff2cf commit c06470c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/qgssvgcache.cpp
Expand Up @@ -96,7 +96,7 @@ QPixmap QgsSVGCache::getPixmap(QString filename, double scaleFactor)
}

QPixmap myPixmap = QPixmap(width,height);
myPixmap.fill(QColor(255,255,255.0)); //transparent
myPixmap.fill(QColor(255,255,255,0)); //transparent
QPainter myPainter(&myPixmap);
mySVG.render(&myPainter);
pixmapMap[std::pair<QString, double>(filename, scaleFactor)] = myPixmap;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssisydialog.cpp
Expand Up @@ -56,7 +56,7 @@ QgsSiSyDialog::QgsSiSyDialog(QgsVectorLayer * layer): QDialog(), mVectorLayer(la
QStringList ml = QgsMarkerCatalogue::instance()->list();
mMarkers.clear();

int size = 29;
int size = 100;
int maxwidth = 0;
QPen pen (QColor(0,0,255));
QBrush brush ( QColor(220,220,220), Qt::SolidPattern );
Expand Down

0 comments on commit c06470c

Please sign in to comment.