mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Properly fix 5740873ed6
Previous commit introduced new bug, background tabs didn't have close buttons.
This commit is contained in:
parent
812437ddcb
commit
655259456c
@ -55,7 +55,7 @@ TabBar::TabBar(QupZilla* mainClass, TabWidget* tabWidget)
|
||||
setElideMode(Qt::ElideRight);
|
||||
setDocumentMode(true);
|
||||
setFocusPolicy(Qt::NoFocus);
|
||||
//setTabsClosable(true);
|
||||
setTabsClosable(true);
|
||||
setMouseTracking(true);
|
||||
setMovable(true);
|
||||
|
||||
@ -239,15 +239,14 @@ QSize TabBar::tabSizeHint(int index) const
|
||||
}
|
||||
else {
|
||||
tryAdjusting = true;
|
||||
}
|
||||
|
||||
if (tabsClosable()) {
|
||||
// Hiding close buttons to save some space
|
||||
tabBar->setTabsClosable(false);
|
||||
|
||||
tabBar->showCloseButton(currentIndex());
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
// Tabs fit into tabbar with size between MAXIMUM_TAB_WIDTH and MINIMUM_TAB_WIDTH
|
||||
// There won't be any empty space in tabbar
|
||||
|
Loading…
Reference in New Issue
Block a user