Browse Source

ImageViewer: Use scaled image size when resizing window to fit it

When the image is flipped or rotated, the window is resized to ensure
that the image still fits in the frame. However, currently the original
bitmap rect is used, which doesn't take into account the scaling
factor. Fix this by using the scaled rect instead.
Nícolas F. R. A. Prado 3 năm trước cách đây
mục cha
commit
72f1e23e6b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Userland/Applications/ImageViewer/ViewWidget.cpp

+ 1 - 1
Userland/Applications/ImageViewer/ViewWidget.cpp

@@ -299,7 +299,7 @@ void ViewWidget::resize_window()
     if (!m_bitmap)
         return;
 
-    auto new_size = m_bitmap->size();
+    auto new_size = m_bitmap_rect.size();
 
     if (new_size.width() < 300)
         new_size.set_width(300);