| 1039 | QTimer::singleShot(0, [this, position]() { move(position); }); |
| 1040 | } else { |
| 1041 | foreach (DockWidget *dw, m_dockPtrs) { |
| 1042 | dw->setVisible(true); |
| 1043 | } |
| 1044 | resize(minimumWidth(), minimumHeight()); |
| 1045 | setGeometry(QStyle::alignedRect(Qt::LeftToRight, Qt::AlignCenter, size(), qApp->screens().first()->availableGeometry())); |
| 1046 | } |
nothing calls this directly
no test coverage detected