diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-11 05:55:45 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-11 05:55:45 +0000 |
| commit | 2baad3abeec8cb1200322bec476d804198833aa3 (patch) | |
| tree | 61243ddfe785d5e7a20236d1fca1c92bcec3f5d0 | |
| parent | 8432416d4e1acef20638536d0f26449dfc474cd2 (diff) | |
oops, debug prints
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/openbox/client.c b/openbox/client.c index af44d3b0..9ed6fd60 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3511,14 +3511,10 @@ static ObClientIcon* client_icon_recursive(ObClient *self, gint w, gint h) for (i = 1; i < self->nicons; ++i) { gulong diff; - ob_debug("icon %d %d wanted %d %d\n", - self->icons[i].width, self->icons[i].height, w, h); diff = ABS(self->icons[0].width - w) + ABS(self->icons[0].height - h); - ob_debug("dsize %u\n", diff); if (diff < min_diff) { min_diff = diff; min_i = i; - ob_debug("chose it\n"); } } return &self->icons[min_i]; |
