diff options
| author | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2011-12-09 01:36:48 +0200 |
|---|---|---|
| committer | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2011-12-09 01:36:48 +0200 |
| commit | 253199b69216c727b9456309276c68ea7f4bf569 (patch) | |
| tree | f1bbeedb95d3c307b4100afb7f41a2b9ed23bfa3 | |
| parent | e1e97212d511d03170747ec175f493d77d89246e (diff) | |
remove unnecessary call to tile()
| -rw-r--r-- | dminiwm.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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(); } |
