Have you tried recentering them manually? You could do something like this:
/* QPointF */ lastCenterPoint = view->mapToScene(view->rect().center());
// minimize...
// restore...
view->scrollTo(lastCenterPoint);
/* QPointF */ lastCenterPoint = view->mapToScene(view->rect().center());
// minimize...
// restore...
view->scrollTo(lastCenterPoint);
To copy to clipboard, switch view to plain text mode
Or, you could simply store the scrollbar values before and restore them after the minimize. I guess you have multiple options here.
Bookmarks