nsis: fix master installer bitmap

This commit is contained in:
Juergen E. Fischer 2014-06-20 23:37:11 +02:00
parent 260d55e541
commit 522f2e4bd3
5 changed files with 10 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -62,9 +62,9 @@ class SetRasterStyle(GeoAlgorithm):
else:
with open(style) as f:
xml = "".join(f.readlines())
d = QDomDocument();
d.setContent(xml);
n = d.firstChild();
d = QDomDocument()
d.setContent(xml)
n = d.firstChild()
layer.readSymbology(n, '')
self.setOutputValue(self.OUTPUT, filename)
iface.mapCanvas().refresh()