Skip to content
Permalink
Browse files
[ui] when toggling panel visibility (ctrl+tab), do not hide floating …
…tabified panels
  • Loading branch information
nirvn committed Jun 29, 2018
1 parent 36cfaac commit 63d0317
Showing 1 changed file with 1 addition and 1 deletion.
@@ -6389,7 +6389,7 @@ void QgisApp::toggleReducedView( bool viewMapOnly )

for ( QDockWidget *dock : docks )
{
if ( dock->isVisible() && !dock->isFloating() )
if ( dock->isVisible() && dockWidgetArea( dock ) != Qt::NoDockWidgetArea )
{
// remember the active docs
docksTitle << dock->windowTitle();

0 comments on commit 63d0317

Please sign in to comment.