all repos — fluxbox @ e4d6824771380f04006c3abb28acc53eb28227e4

custom fork of the fluxbox windowmanager

changing between internal and external tabs doesn't affect iconified windows
markt markt
commit

e4d6824771380f04006c3abb28acc53eb28227e4

parent

2de7a0b8213c5245d3ba223d4d454a5b608fee95

2 files changed, 12 insertions(+), 0 deletions(-)

jump to
M ChangeLogChangeLog

@@ -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:
M src/Screen.ccsrc/Screen.cc

@@ -910,6 +910,15 @@ (*win_it)->frame().setTabMode(FbWinFrame::EXTERNAL);

} } } + 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); + } }