mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-12 20:13:45 +02:00
Skip using SVG view box size
This commit is contained in:
@@ -288,13 +288,8 @@ class ImageHelper {
|
||||
float dw = svg.getDocumentWidth();
|
||||
float dh = svg.getDocumentHeight();
|
||||
if (dw <= 0 || dh <= 0) {
|
||||
RectF rect = svg.getDocumentViewBox();
|
||||
dw = rect.width();
|
||||
dh = rect.height();
|
||||
if (dw <= 0 || dh <= 0) {
|
||||
dw = scaleToPixels;
|
||||
dh = scaleToPixels;
|
||||
}
|
||||
dw = scaleToPixels;
|
||||
dh = scaleToPixels;
|
||||
}
|
||||
|
||||
int w, h;
|
||||
|
||||
Reference in New Issue
Block a user