[TD]fix scaling of bitmap

This commit is contained in:
Wanderer Fan
2022-06-23 10:39:59 -04:00
committed by WandererFan
parent 43a6b15c6a
commit 356a54e069
7 changed files with 97 additions and 17 deletions

View File

@@ -85,7 +85,7 @@ bool QGCustomImage::load(QPixmap map)
QSize QGCustomImage::imageSize(void)
{
QSize result = m_px.size();
QSize result = m_px.size() * scale();
return result;
}