Skip to content

Commit c06470c

Browse files
author
timlinux
committedJan 23, 2006
fix bux with symbol background transparency
git-svn-id: http://svn.osgeo.org/qgis/trunk@4722 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent eeff2cf commit c06470c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/core/qgssvgcache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ QPixmap QgsSVGCache::getPixmap(QString filename, double scaleFactor)
9696
}
9797

9898
QPixmap myPixmap = QPixmap(width,height);
99-
myPixmap.fill(QColor(255,255,255.0)); //transparent
99+
myPixmap.fill(QColor(255,255,255,0)); //transparent
100100
QPainter myPainter(&myPixmap);
101101
mySVG.render(&myPainter);
102102
pixmapMap[std::pair<QString, double>(filename, scaleFactor)] = myPixmap;

‎src/gui/qgssisydialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ QgsSiSyDialog::QgsSiSyDialog(QgsVectorLayer * layer): QDialog(), mVectorLayer(la
5656
QStringList ml = QgsMarkerCatalogue::instance()->list();
5757
mMarkers.clear();
5858

59-
int size = 29;
59+
int size = 100;
6060
int maxwidth = 0;
6161
QPen pen (QColor(0,0,255));
6262
QBrush brush ( QColor(220,220,220), Qt::SolidPattern );

0 commit comments

Comments
 (0)
Please sign in to comment.