fix minor rendering bug when growing tabs
This commit is contained in:
parent
5e22dcd9ff
commit
15f53b5556
1 changed files with 5 additions and 1 deletions
|
@ -345,7 +345,11 @@ void FbWinFrame::alignTabs() {
|
|||
if (m_tabmode != EXTERNAL)
|
||||
return;
|
||||
|
||||
m_tab_container.setMaxSizePerClient(m_screen.getTabWidth());
|
||||
if (m_tab_container.maxWidthPerClient() != m_screen.getTabWidth()) {
|
||||
m_tab_container.setMaxSizePerClient(m_screen.getTabWidth());
|
||||
renderTabContainer();
|
||||
applyTabContainer();
|
||||
}
|
||||
|
||||
int tabx = 0, taby = 0;
|
||||
switch (m_screen.getTabPlacement()) {
|
||||
|
|
Loading…
Reference in a new issue