Reputation: 19902
Why this:
graphics_view->fitInView(scene->sceneRect(), Qt::KeepAspectRatio);
doesn’t work as expected ? It isn't fitting the scene rect correctly, showing margins around it.
Upvotes: 5
Views: 3819
Reputation: 2681
You can fix it reimplementing the original fitInView method, but without including the margins. Check my C++ solution at: https://stackoverflow.com/a/42474510/6050364
Upvotes: 1
Reputation: 1211
The cause is this: https://bugreports.qt.io/browse/QTBUG-42331 - please vote on it on the qt bug tracker to up its priority.
In short, fitInView has hardcoded margins and this can cause all kinds of havoc - the least of which is that now you lose a few pixels of display area and might also force unnecessary rescaling.
You can fix the problem by reimplementing fitInView, based on the existing implementation but removing it's ridiculous margins. An example of that is available here in python, based on the original C++ version:
https://github.com/nevion/pyqimageview/blob/master/qimageview/widget.py#L276
Upvotes: 4
Reputation: 19902
I figured out what the problem was, it is described in this question. The main cause of the problem is that you shouldn't call fitInView before the form is shown.
Upvotes: 2