summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-10 21:40:22 +0000
committerDana Jansens <danakj@orodu.net>2007-06-10 21:40:22 +0000
commit875ce8edf4878b4c8e9c9d024970b472bb5c137e (patch)
treefd0a9e3cc61c6c4050aba9065c6dc84d8b59fca2
parent89b7311d8d8cd39d3e8a942d783f75bab2599b60 (diff)
fix a debug print
-rw-r--r--openbox/client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/client.c b/openbox/client.c
index dbe203a6..15b61352 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -2554,10 +2554,10 @@ static void client_apply_startup_state(ObClient *self,
*/
client_try_configure(self, &x, &y, &w, &h, &l, &l, FALSE);
ob_debug("placed window 0x%x at %d, %d with size %d x %d\n",
- self->window, self->area.x, self->area.y,
- self->area.width, self->area.height);
- oldarea = self->area; /* save the area */
- RECT_SET(self->area, x, y, w, h); /* put where it should be for the premax stuff */
+ self->window, x, y, w, h);
+ /* save the area, and make it where it should be for the premax stuff */
+ oldarea = self->area;
+ RECT_SET(self->area, x, y, w, h);
/* apply the states. these are in a carefully crafted order.. */