all repos — fluxbox @ 19230e6927686b7fa5cdaf702b800f1d03a90479

custom fork of the fluxbox windowmanager

minor fix
fluxgen fluxgen
commit

19230e6927686b7fa5cdaf702b800f1d03a90479

parent

e9f9c6104b61a9f7ec7df14235a9c5392f082bad

1 files changed, 3 insertions(+), 3 deletions(-)

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

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: fluxbox.cc,v 1.177 2003/07/28 20:10:05 fluxgen Exp $ +// $Id: fluxbox.cc,v 1.178 2003/08/04 18:16:22 fluxgen Exp $ #include "fluxbox.hh"

@@ -1122,9 +1122,9 @@ } else {

WinClient *winclient = searchWindow(ce.window); BScreen *screen = searchScreen(ce.window); - if (winclient && screen) { + if (winclient || screen) { for (size_t i=0; i<m_atomhandler.size(); ++i) { - m_atomhandler[i]->checkClientMessage(ce, screen, winclient); + m_atomhandler[i]->checkClientMessage(ce, screen, winclient); } } }