]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_image.cpp
fixed (rare but fatal) bug in wxWindowDisabler
[wxWidgets.git] / src / html / m_image.cpp
index 0f4027fb669bed2d488b538416fd08021e353f45..06a78d6b82b0b35d74ed6f04c4aa73ce5300df1a 100644 (file)
@@ -277,8 +277,8 @@ wxHtmlImageCell::wxHtmlImageCell(wxFSFile *input, int w, int h, double scale, in
         if (w != -1) m_Width = w; else m_Width = ww;
         if (h != -1) m_Height = h; else m_Height = hh;
 
-        m_Width = (int)(scale * (double)w);
-        m_Height = (int)(scale * (double)h);
+        m_Width = (int)(scale * (double)m_Width);
+        m_Height = (int)(scale * (double)m_Height);
 
         if ((m_Width != ww) || (m_Height != hh)) {
             wxImage img2 = img -> Scale(m_Width, m_Height);