| 281 | } |
| 282 | |
| 283 | bool DockManager::saveCurrentLayout() |
| 284 | { |
| 285 | if (m_current_layout == DockLayout::INVALID_INDEX) |
| 286 | return true; |
| 287 | |
| 288 | return m_layouts.at(m_current_layout).save(m_current_layout); |
| 289 | } |
| 290 | |
| 291 | void DockManager::resetAllLayouts() |
| 292 | { |
no test coverage detected