aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-03-07 16:59:18 +0000
committerGravatar Fabio Bas2010-03-07 16:59:18 +0000
commit3ab80d3d1e488abff3b679c323a9bf9b1d72061a (patch)
tree52c5b9ff35c84632052e7eeea49dc2366ccf8ed3 /src/modules/theme
parentreworked a bit "not built class" and "class function" icons (diff)
downloadKVIrc-3ab80d3d1e488abff3b679c323a9bf9b1d72061a.tar.gz
KVIrc-3ab80d3d1e488abff3b679c323a9bf9b1d72061a.tar.bz2
KVIrc-3ab80d3d1e488abff3b679c323a9bf9b1d72061a.zip
theme.screenshot: avoid the generation of an uncompressed png image (that could takes MiBs)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4105 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/theme')
-rw-r--r--src/modules/theme/themefunctions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/theme/themefunctions.cpp b/src/modules/theme/themefunctions.cpp
index 9c4c04ad6..955398099 100644
--- a/src/modules/theme/themefunctions.cpp
+++ b/src/modules/theme/themefunctions.cpp
@@ -383,7 +383,7 @@ namespace KviThemeFunctions
if(pix.isNull())
bResult = false;
else {
- if(!pix.save(szSavePngFilePath,"PNG",100))
+ if(!pix.save(szSavePngFilePath,"PNG"))
bResult = false;
}