[TD]fix scaling of bitmap

This commit is contained in:
Wanderer Fan
2022-06-23 10:39:59 -04:00
committed by WandererFan
parent ab9ff476e1
commit 11c6f4a9e9
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;
}