Commit f3636709 authored by Dominik Kleiser's avatar Dominik Kleiser

Bug #3800 - Resize viewport when CV_WINDOW_KEEPRATIO was set (Qt)

parent 0726c4d4
......@@ -2591,6 +2591,7 @@ void DefaultViewPort::resizeEvent(QResizeEvent* evnt)
if (fabs(ratioX - ratioY) * 100 > ratioX) //avoid infinity loop / epsilon = 1% of ratioX
{
resize(newSize);
viewport()->resize(newSize);
//move to the middle
//newSize get the delta offset to place the picture in the middle of its parent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment