diff --git a/resources/qml/dialogs/ImageOverlay.qml b/resources/qml/dialogs/ImageOverlay.qml
index b914829e8a750b03f11ddca4300924592f3aa3ce..69a80eb34c43b6ca812d063963d90571119df798 100644
--- a/resources/qml/dialogs/ImageOverlay.qml
+++ b/resources/qml/dialogs/ImageOverlay.qml
@@ -51,8 +51,8 @@ Window {
         property int imgSrcWidth: (imageOverlay.originalWidth && imageOverlay.originalWidth > 100) ? imageOverlay.originalWidth : Screen.width
         property int imgSrcHeight: imageOverlay.proportionalHeight ? imgSrcWidth * imageOverlay.proportionalHeight : Screen.height
 
-        height: Math.min(parent.height || Screen.height, imgSrcHeight)
-        width: Math.min(parent.width || Screen.width, imgSrcWidth)
+        height: imgSrcHeight
+        width: imgSrcWidth
 
         x: (parent.width - width) / 2
         y: (parent.height - height) / 2