diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/WinClient.cc | 13 |
2 files changed, 13 insertions, 4 deletions
@@ -1,5 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.7: | 2 | Changes for 0.9.7: |
3 | *03/12/15: | ||
4 | * Fix mozilla focus issue (Simon) | ||
5 | - When input focus hint not present assume false rather than true | ||
6 | WinClient.cc | ||
3 | *03/12/13: | 7 | *03/12/13: |
4 | * Moving client to drop zone when drag'n'drop to root window (Henrik) | 8 | * Moving client to drop zone when drag'n'drop to root window (Henrik) |
5 | Window.cc | 9 | Window.cc |
diff --git a/src/WinClient.cc b/src/WinClient.cc index 8e378bf..4dae403 100644 --- a/src/WinClient.cc +++ b/src/WinClient.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: WinClient.cc,v 1.31 2003/12/04 21:31:02 fluxgen Exp $ | 22 | // $Id: WinClient.cc,v 1.32 2003/12/15 11:55:58 rathnor Exp $ |
23 | 23 | ||
24 | #include "WinClient.hh" | 24 | #include "WinClient.hh" |
25 | 25 | ||
@@ -63,12 +63,12 @@ WinClient::WinClient(Window win, BScreen &screen, FluxboxWindow *fbwin):FbTk::Fb | |||
63 | m_focus_mode(F_PASSIVE), | 63 | m_focus_mode(F_PASSIVE), |
64 | m_diesig(*this), m_screen(screen), | 64 | m_diesig(*this), m_screen(screen), |
65 | m_strut(0) { | 65 | m_strut(0) { |
66 | updateWMProtocols(); | ||
66 | updateBlackboxHints(); | 67 | updateBlackboxHints(); |
67 | updateMWMHints(); | 68 | updateMWMHints(); |
68 | updateWMHints(); | 69 | updateWMHints(); |
69 | updateWMNormalHints(); | 70 | updateWMNormalHints(); |
70 | updateWMClassHint(); | 71 | updateWMClassHint(); |
71 | updateWMProtocols(); | ||
72 | updateTitle(); | 72 | updateTitle(); |
73 | updateIconTitle(); | 73 | updateIconTitle(); |
74 | Fluxbox::instance()->saveWindowSearch(win, this); | 74 | Fluxbox::instance()->saveWindowSearch(win, this); |
@@ -398,8 +398,13 @@ void WinClient::updateWMHints() { | |||
398 | else | 398 | else |
399 | m_focus_mode = F_NOINPUT; | 399 | m_focus_mode = F_NOINPUT; |
400 | } | 400 | } |
401 | } else | 401 | } else // not present => false (check?). |
402 | m_focus_mode = F_PASSIVE; | 402 | // note that mozilla has no value, and has send_focus |
403 | // and requires globally active | ||
404 | if (send_focus_message) | ||
405 | m_focus_mode = F_GLOBALLYACTIVE; | ||
406 | else | ||
407 | m_focus_mode = F_NOINPUT; | ||
403 | 408 | ||
404 | if (wmhint->flags & StateHint) | 409 | if (wmhint->flags & StateHint) |
405 | initial_state = wmhint->initial_state; | 410 | initial_state = wmhint->initial_state; |