aboutsummaryrefslogtreecommitdiff
path: root/dminiwm.c
diff options
context:
space:
mode:
Diffstat (limited to 'dminiwm.c')
-rw-r--r--dminiwm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/dminiwm.c b/dminiwm.c
index 39b10fb..ad005b0 100644
--- a/dminiwm.c
+++ b/dminiwm.c
@@ -251,8 +251,6 @@ void killclient(const Arg arg) {
void next_win(const Arg arg) {
if(current == NULL || head == NULL) return;
current = (current->next == NULL) ? head : current->next;
- if(mode == MONOCYCLE)
- tile();
update_current();
}
@@ -262,8 +260,6 @@ void prev_win(const Arg arg) {
for(current=head; current->next; current=current->next);
else
current = current->prev;
- if(mode == MONOCYCLE)
- tile();
update_current();
}