Skip to content

Commit

Permalink
[ui] when toggling panel visibility (ctrl+tab), do not hide floating …
Browse files Browse the repository at this point in the history
…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.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit 63d0317

Please sign in to comment.