Skip to content

Commit 63d0317

Browse files
committedJun 29, 2018
[ui] when toggling panel visibility (ctrl+tab), do not hide floating tabified panels
1 parent 36cfaac commit 63d0317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6389,7 +6389,7 @@ void QgisApp::toggleReducedView( bool viewMapOnly )
63896389

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

0 commit comments

Comments
 (0)
Please sign in to comment.