Make DockWidget::raise() raise the frame in MDI mode

This commit is contained in:
Sergio Martins
2021-03-18 15:06:50 +00:00
parent c9602c2b0a
commit e3b333aca8

View File

@@ -381,6 +381,9 @@ void DockWidgetBase::raise()
if (auto fw = floatingWindow()) {
fw->raise();
fw->activateWindow();
} else if (Frame *frame = d->frame()) {
if (frame->isMDI())
frame->raise();
}
}