Add option to always show all tabs (#102)

* Add option to always show tabs.

* Disable "Detach" context menu option in tab if there is only one tab in the floating container.
This commit is contained in:
Rodrigo Oliva
2020-01-31 14:27:01 +01:00
committed by GitHub
parent d4c179c48e
commit dd06d84206
4 changed files with 21 additions and 9 deletions

View File

@@ -702,6 +702,11 @@ void CDockAreaWidget::updateTitleBarVisibility()
return;
}
if (CDockManager::configFlags().testFlag(CDockManager::AlwaysShowTabs))
{
return;
}
if (d->TitleBar)
{
d->TitleBar->setVisible(!Container->isFloating() || !Container->hasTopLevelDockWidget());