diff options
author | markt <markt> | 2006-07-06 06:05:12 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-06 06:05:12 (GMT) |
commit | e4d6824771380f04006c3abb28acc53eb28227e4 (patch) | |
tree | df62edf13c6472d4f348b0444ba6ff3068e12efc | |
parent | 2de7a0b8213c5245d3ba223d4d454a5b608fee95 (diff) | |
download | fluxbox-e4d6824771380f04006c3abb28acc53eb28227e4.zip fluxbox-e4d6824771380f04006c3abb28acc53eb28227e4.tar.bz2 |
changing between internal and external tabs doesn't affect iconified windows
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Screen.cc | 9 |
2 files changed, 12 insertions, 0 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/07/06: | 3 | *06/07/06: |
4 | * Changing between internal and external tabs didn't affect iconified | ||
5 | windows (Mark) | ||
6 | Screen.cc | ||
4 | * Still trying to get the focus right: bug #1517750 (Mark) | 7 | * Still trying to get the focus right: bug #1517750 (Mark) |
5 | FocusControl.cc Window.cc Screen.cc | 8 | FocusControl.cc Window.cc Screen.cc |
6 | *06/07/05: | 9 | *06/07/05: |
diff --git a/src/Screen.cc b/src/Screen.cc index df15250..d0accfc 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -910,6 +910,15 @@ void BScreen::reconfigureTabs() { | |||
910 | } | 910 | } |
911 | } | 911 | } |
912 | } | 912 | } |
913 | Icons::iterator icon_it = m_icon_list.begin(); | ||
914 | Icons::iterator icon_it_end = m_icon_list.end(); | ||
915 | for (; icon_it != icon_it_end; ++icon_it) { | ||
916 | (*icon_it)->frame().updateTabProperties(); | ||
917 | if (*resource.default_internal_tabs) | ||
918 | (*icon_it)->frame().setTabMode(FbWinFrame::INTERNAL); | ||
919 | else | ||
920 | (*icon_it)->frame().setTabMode(FbWinFrame::EXTERNAL); | ||
921 | } | ||
913 | } | 922 | } |
914 | 923 | ||
915 | 924 | ||