aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-04-14 16:38:33 (GMT)
committerrathnor <rathnor>2004-04-14 16:38:33 (GMT)
commitcd5f6a81cf96ef63e9d59c7db6826a42372098b8 (patch)
tree39806ce0bab6d1e9abbf1034cbe97a55f655bafe
parentcf2b24b645008ee2efdc14391baad793f8a49f5f (diff)
downloadfluxbox-cd5f6a81cf96ef63e9d59c7db6826a42372098b8.zip
fluxbox-cd5f6a81cf96ef63e9d59c7db6826a42372098b8.tar.bz2
revert to sync grab for now
-rw-r--r--ChangeLog2
-rw-r--r--src/Window.cc4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 22f1ed3..decf22a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
1(Format: Year/Month/Day) 1(Format: Year/Month/Day)
2Changes for 0.9.9: 2Changes 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()) {