diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/Window.cc | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.9: | 2 | Changes for 0.9.9: |
3 | *04/04/14: | 3 | *04/04/14: |
4 | * Revert to sync. Async stops it from replaying (Simon) | ||
5 | Window.cc | ||
4 | * Half revert a bit of the below, since it broke click-to-focus (Simon) | 6 | * Half revert a bit of the below, since it broke click-to-focus (Simon) |
5 | -> adds back the grab, but as an async one | 7 | -> adds back the grab, but as an async one |
6 | Window.cc | 8 | Window.cc |
diff --git a/src/Window.cc b/src/Window.cc index acb2565..25e60a3 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.279 2004/04/14 15:40:57 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.280 2004/04/14 16:38:33 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -977,7 +977,7 @@ void FluxboxWindow::grabButtons() { | |||
977 | // needed for click to focus | 977 | // needed for click to focus |
978 | XGrabButton(display, Button1, AnyModifier, | 978 | XGrabButton(display, Button1, AnyModifier, |
979 | frame().window().window(), True, ButtonPressMask, | 979 | frame().window().window(), True, ButtonPressMask, |
980 | GrabModeAsync, GrabModeAsync, None, None); | 980 | GrabModeSync, GrabModeSync, None, None); |
981 | XUngrabButton(display, Button1, Mod1Mask|Mod2Mask|Mod3Mask, frame().window().window()); | 981 | XUngrabButton(display, Button1, Mod1Mask|Mod2Mask|Mod3Mask, frame().window().window()); |
982 | 982 | ||
983 | if (Fluxbox::instance()->useMod1()) { | 983 | if (Fluxbox::instance()->useMod1()) { |