Endless resize event
-
Hi all,
I have this QML application in a window (so not full screen) under linux 64 bit using qt version 5.5
When I resize the window with my mouse. the resize happens but then starts snapping back and forth between the desired size and a previous size.
I debugged things by overloading resizeEvent of my qquickview subclass and noticed this
I get a resize from InitialW, InitialH to IntermediateW, IntermediateH
then I get a resize from IntermediateW, IntermediateH to FinalW, FinalH
then I get a resize from FinalW, FinalH to IntermediateW, IntermediateH
then I get a resize from IntermediateW, IntermediateH to FinalW, FinalH
etc ... ad infinitum.what could be happening here ??? is looks like a bug under linux because nor in windows nor on OSX I have
the same problem.Sure could use some help here
W