From 9d4896ae86a1b0f6a3b266ca557991962ceb29c4 Mon Sep 17 00:00:00 2001 From: Ivan Kanakarakis Date: Wed, 18 Jan 2012 20:36:30 +0200 Subject: fullscreen client can move freely --- monsterwm.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'monsterwm.c') diff --git a/monsterwm.c b/monsterwm.c index 6380ad3..cb7ed1b 100644 --- a/monsterwm.c +++ b/monsterwm.c @@ -545,7 +545,6 @@ void mousemotion(const Arg *arg) { */ void move_down() { if (!current || !head->next) return; - for (client *t=head; t; t=t->next) if (t->isfullscreen) return; /* p is previous, n is next, if current is head n is last, c is current */ client *p = NULL, *n = (current->next) ? current->next : head; @@ -587,7 +586,6 @@ void move_down() { */ void move_up() { if (!current || !head->next) return; - for (client *t=head; t; t=t->next) if (t->isfullscreen) return; client *pp = NULL, *p; /* p is previous from current or last if current is head */ -- cgit v1.3.1