aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnselm R Garbe2010-04-01 19:39:24 +0100
committerAnselm R Garbe2010-04-01 19:39:24 +0100
commit22a9915a91f688fc1b1dfd5237c953f071e80e35 (patch)
treed6aec30a40f31358ef28a977ddf9fdb0053e4bcc
parent9ef4bfa6c4e1092ec6f63104f50781e4a9dd7804 (diff)
downloadaur-22a9915a91f688fc1b1dfd5237c953f071e80e35.tar.gz
selmon optimisation is needed
-rw-r--r--dwm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/dwm.c b/dwm.c
index b1f77cc343d6..ac534a8c73f7 100644
--- a/dwm.c
+++ b/dwm.c
@@ -815,10 +815,6 @@ void
focus(Client *c) {
if(!c || !ISVISIBLE(c))
for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
- if(c && c == selmon->sel) {
- D fprintf(stderr, "focus, optimising focus away\n");
- return;
- }
if(selmon->sel)
unfocus(selmon->sel);
if(c) {