summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Window.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 35d9b80..1104e50 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -1211,6 +1211,9 @@ void FluxboxWindow::moveResize(int new_x, int new_y,
1211 if (!moving) { 1211 if (!moving) {
1212 m_last_resize_x = new_x; 1212 m_last_resize_x = new_x;
1213 m_last_resize_y = new_y; 1213 m_last_resize_y = new_y;
1214
1215 /* Ignore all EnterNotify events until the pointer actually moves */
1216 screen().focusControl().ignoreAtPointer();
1214 } 1217 }
1215 1218
1216} 1219}