all repos — fluxbox @ 8a7879913ba7169224e18db81888a49e732c1819

custom fork of the fluxbox windowmanager

Ignore EnterNotify on Lower

Lower is one of the actions which may reveal a window under the current mouse
pointer which would unexpectedly change focus under focus-folows-mouse.
Jim Ramsay i.am@jimramsay.com
commit

8a7879913ba7169224e18db81888a49e732c1819

parent

76ea1d9bbe3f3b7edb15da1a67652982edd5f646

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -1668,6 +1668,10 @@ return;

#ifdef DEBUG cerr<<"FluxboxWindow("<<title()<<")::lower()"<<endl; #endif // DEBUG + + /* Ignore all EnterNotify events until the pointer actually moves */ + screen().focusControl().ignoreAtPointer(); + // get root window WinClient *client = getRootTransientFor(m_client);