diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/FbTk/Menu.cc | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,7 +1,10 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *07/03/07: | ||
4 | * Fixed a little bug with reverting focus after closing menu (Mark) | ||
5 | FbTk/Menu.cc | ||
3 | *07/03/06: | 6 | *07/03/06: |
4 | * changed some handling of focusing/raising transient windows (Mark) | 7 | * Changed some handling of focusing/raising transient windows (Mark) |
5 | Window.cc FocusControl.cc | 8 | Window.cc FocusControl.cc |
6 | * session.screen<N>.defaultDeco now allows same strings as apps file (Mark) | 9 | * session.screen<N>.defaultDeco now allows same strings as apps file (Mark) |
7 | Screen.cc/hh Window.cc Remember.cc/hh | 10 | Screen.cc/hh Window.cc Remember.cc/hh |
diff --git a/src/FbTk/Menu.cc b/src/FbTk/Menu.cc index 163fc83..a2326c4 100644 --- a/src/FbTk/Menu.cc +++ b/src/FbTk/Menu.cc | |||
@@ -816,7 +816,9 @@ void Menu::handleEvent(XEvent &event) { | |||
816 | if (event.type == FocusOut) { | 816 | if (event.type == FocusOut) { |
817 | if (s_focused == this) | 817 | if (s_focused == this) |
818 | s_focused = 0; | 818 | s_focused = 0; |
819 | } else if (event.type == FocusIn) { | 819 | // I don't know why, but I get a FocusIn event when closing the menu with |
820 | // the mouse over it -- probably an xorg bug, but it's easy to address here | ||
821 | } else if (event.type == FocusIn && m_visible) { | ||
820 | if (s_focused != this) | 822 | if (s_focused != this) |
821 | s_focused = this; | 823 | s_focused = this; |
822 | // if there's a submenu open, focus it instead | 824 | // if there's a submenu open, focus it instead |