Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ui] when toggling panel visibility (ctrl+tab), do not hide floating …
…tabified panels
  • Loading branch information
nirvn committed Jun 29, 2018
1 parent eed42b1 commit 8901d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -6388,7 +6388,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 8901d2d

Please sign in to comment.