aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/Screen.cc9
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 65abab5..e6b0241 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0rc3: 2Changes 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