diff options
author | markt <markt> | 2006-08-02 18:38:09 (GMT) |
---|---|---|
committer | markt <markt> | 2006-08-02 18:38:09 (GMT) |
commit | b8fe83c4e48a95f44cbe7f889c5a1e3977fce52e (patch) | |
tree | f37213919fab99eb755e3dbab26ded9cf51e8b4c | |
parent | fc550ba2e038c20280f563f13d7746ed3acfcc55 (diff) | |
download | fluxbox_pavel-b8fe83c4e48a95f44cbe7f889c5a1e3977fce52e.zip fluxbox_pavel-b8fe83c4e48a95f44cbe7f889c5a1e3977fce52e.tar.bz2 |
fix ClickTabFocus and MouseTabFocus in nls
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Screen.cc | 13 |
2 files changed, 9 insertions, 7 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/08/02: | ||
4 | * Fix ClickTabFocus and MouseTabFocus in nls (Thanks Antonio Gomes) | ||
5 | Screen.cc | ||
3 | *06/07/30: | 6 | *06/07/30: |
4 | * List windows in iconbar in creation order (Mark) | 7 | * List windows in iconbar in creation order (Mark) |
5 | IconbarTool.cc/hh | 8 | IconbarTool.cc/hh |
diff --git a/src/Screen.cc b/src/Screen.cc index 6e4907a..51189f2 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -1617,13 +1617,12 @@ void BScreen::setupConfigmenu(FbTk::Menu &menu) { | |||
1617 | FocusControl::MOUSEFOCUS); | 1617 | FocusControl::MOUSEFOCUS); |
1618 | #undef _FOCUSITEM | 1618 | #undef _FOCUSITEM |
1619 | 1619 | ||
1620 | focus_menu->insert(new TabFocusModelMenuItem("ClickTabFocus", focusControl(), | 1620 | focus_menu->insert(new TabFocusModelMenuItem(_FB_XTEXT(Configmenu, |
1621 | FocusControl::CLICKTABFOCUS, | 1621 | ClickTabFocus, "ClickTabFocus", "Click tab to focus windows"), |
1622 | save_and_reconfigure)); | 1622 | focusControl(), FocusControl::CLICKTABFOCUS, save_and_reconfigure)); |
1623 | focus_menu->insert(new TabFocusModelMenuItem("MouseTabFocus", focusControl(), | 1623 | focus_menu->insert(new TabFocusModelMenuItem(_FB_XTEXT(Configmenu, |
1624 | FocusControl::MOUSETABFOCUS, | 1624 | MouseTabFocus, "MouseTabFocus", "Hover over tab to focus windows"), |
1625 | save_and_reconfigure)); | 1625 | focusControl(), FocusControl::MOUSETABFOCUS, save_and_reconfigure)); |
1626 | |||
1627 | 1626 | ||
1628 | focus_menu->insert(new BoolMenuItem(_FB_XTEXT(Configmenu, | 1627 | focus_menu->insert(new BoolMenuItem(_FB_XTEXT(Configmenu, |
1629 | AutoRaise, | 1628 | AutoRaise, |