Fixed issue #429 - Raise floating widget on toggleView() request

This commit is contained in:
Uwe Kindler 2022-06-17 08:31:24 +02:00
parent 0e566cb8a3
commit bedd25021c

View File

@ -555,6 +555,7 @@ void CDockWidget::toggleView(bool Open)
{
Open = true;
}
// If the dock widget state is different, then we really need to toggle
// the state. If we are in the right state, then we simply make this
// dock widget the current dock widget
@ -564,7 +565,7 @@ void CDockWidget::toggleView(bool Open)
}
else if (Open && d->DockArea)
{
d->DockArea->setCurrentDockWidget(this);
raise();
}
}