| 134 | } |
| 135 | |
| 136 | bool Stack::isWindow() const |
| 137 | { |
| 138 | if (auto fw = view()->rootView()->asFloatingWindowController()) { |
| 139 | // Case of dragging via the tab widget when the title bar is hidden |
| 140 | return fw->hasSingleGroup(); |
| 141 | } |
| 142 | |
| 143 | return false; |
| 144 | } |
| 145 | |
| 146 | Core::DockWidget *Stack::singleDockWidget() const |
| 147 | { |
no test coverage detected