From 37b65d08654c70d36fe87fcb0bbb0cfff0f45da3 Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Fri, 9 Apr 2021 10:23:29 +0100 Subject: [PATCH] [Techdraw] Fix minor bug changing Image Crop... ... from True to False does not fill image view box only approx three quarters. This was found testing reported issue https://forum.freecadweb.org/viewtopic.php?f=35&t=57537 (otherwise it works as @wandererfan expected) --- src/Mod/TechDraw/Gui/QGIViewImage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/TechDraw/Gui/QGIViewImage.cpp b/src/Mod/TechDraw/Gui/QGIViewImage.cpp index a021b4024e..5dc0add9da 100644 --- a/src/Mod/TechDraw/Gui/QGIViewImage.cpp +++ b/src/Mod/TechDraw/Gui/QGIViewImage.cpp @@ -135,7 +135,7 @@ void QGIViewImage::draw() } m_cliparea->centerAt(0.0,0.0); - QGIView::draw(); + drawImage(); } void QGIViewImage::drawImage()