summaryrefslogtreecommitdiffstats
path: root/core/qthelper.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-01-01 01:32:03 +0100
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2021-01-01 21:10:10 +0100
commitb0b52d51bdb093b7c2200d40ec41e2c3b0f2c830 (patch)
tree5602f5c7b48b7a3b2be9326b0e86e7a2f3fcdc53 /core/qthelper.h
parent60999e3a3933919e873337df8a74d9fab26bc2cf (diff)
downloadsubsurface-b0b52d51bdb093b7c2200d40ec41e2c3b0f2c830.tar.gz
core: add "transparent" parameter to renderSVGIcon
The start-selection widget will need icons with a transparent background so that the icons don't stick out like a sore thumb. So far the icons rendered by this function were only used by the images on the profile and were perfectly rectangular. Therefore there was no need for this. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/qthelper.h')
-rw-r--r--core/qthelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/qthelper.h b/core/qthelper.h
index 152da7f89..ef7f4c8ff 100644
--- a/core/qthelper.h
+++ b/core/qthelper.h
@@ -87,7 +87,7 @@ QString getUserAgent();
QString printGPSCoords(const location_t *loc);
std::vector<int> get_cylinder_map_for_remove(int count, int n);
std::vector<int> get_cylinder_map_for_add(int count, int n);
-QImage renderSVGIcon(const char *id, int size);
+QImage renderSVGIcon(const char *id, int size, bool transparent);
QImage renderSVGIconWidth(const char *id, int size);
extern QString (*changesCallback)();