changing between internal and external tabs doesn't affect iconified windows
This commit is contained in:
parent
2de7a0b821
commit
e4d6824771
2 changed files with 12 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
|||
(Format: Year/Month/Day)
|
||||
Changes for 1.0rc3:
|
||||
*06/07/06:
|
||||
* Changing between internal and external tabs didn't affect iconified
|
||||
windows (Mark)
|
||||
Screen.cc
|
||||
* Still trying to get the focus right: bug #1517750 (Mark)
|
||||
FocusControl.cc Window.cc Screen.cc
|
||||
*06/07/05:
|
||||
|
|
|
@ -910,6 +910,15 @@ void BScreen::reconfigureTabs() {
|
|||
}
|
||||
}
|
||||
}
|
||||
Icons::iterator icon_it = m_icon_list.begin();
|
||||
Icons::iterator icon_it_end = m_icon_list.end();
|
||||
for (; icon_it != icon_it_end; ++icon_it) {
|
||||
(*icon_it)->frame().updateTabProperties();
|
||||
if (*resource.default_internal_tabs)
|
||||
(*icon_it)->frame().setTabMode(FbWinFrame::INTERNAL);
|
||||
else
|
||||
(*icon_it)->frame().setTabMode(FbWinFrame::EXTERNAL);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue