diff options
author | markt <markt> | 2007-01-05 21:24:37 (GMT) |
---|---|---|
committer | markt <markt> | 2007-01-05 21:24:37 (GMT) |
commit | 4ffd744f81cf625c16e38e98168faa84e21ffbc9 (patch) | |
tree | fc83b02c9839338196fe4a11c7a93379cf2e93de | |
parent | dbe528755ef388f5db01296eaf5dbabcb3c82ec7 (diff) | |
download | fluxbox_paul-4ffd744f81cf625c16e38e98168faa84e21ffbc9.zip fluxbox_paul-4ffd744f81cf625c16e38e98168faa84e21ffbc9.tar.bz2 |
window wasn't staying focused when dragging across workspaces with outline window moving
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Window.cc | 1 |
2 files changed, 4 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 | *07/01/05: | 3 | *07/01/05: |
4 | * Window wasn't staying focused when dragging across workspaces with | ||
5 | outline window moving (Mark) | ||
6 | Window.cc | ||
4 | * Fix placement of window menu with toolbar at the top of the screen, | 7 | * Fix placement of window menu with toolbar at the top of the screen, |
5 | and remove titlebar from window menu (Mark) | 8 | and remove titlebar from window menu (Mark) |
6 | Window.cc IconButton.cc | 9 | Window.cc IconButton.cc |
diff --git a/src/Window.cc b/src/Window.cc index d878e2e..b3b395b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -3360,6 +3360,7 @@ void FluxboxWindow::stopMoving(bool interrupted) { | |||
3360 | if (m_workspace_number != screen().currentWorkspaceID()) { | 3360 | if (m_workspace_number != screen().currentWorkspaceID()) { |
3361 | screen().reassociateWindow(this, screen().currentWorkspaceID(), true); | 3361 | screen().reassociateWindow(this, screen().currentWorkspaceID(), true); |
3362 | frame().show(); | 3362 | frame().show(); |
3363 | setInputFocus(); | ||
3363 | } | 3364 | } |
3364 | } | 3365 | } |
3365 | fluxbox->ungrab(); | 3366 | fluxbox->ungrab(); |