remove debug printfs

This commit is contained in:
Sascha Kruse 2013-02-22 16:21:00 +00:00
parent 138476486e
commit 5f5f706381

3
x.c
View File

@ -114,7 +114,6 @@ void r_free_layouts(GSList *layouts)
void x_win_draw(void) void x_win_draw(void)
{ {
printf("drawing\n");
cairo_t *c; cairo_t *c;
c = cairo_create(cairo_ctx.surface); c = cairo_create(cairo_ctx.surface);
@ -141,8 +140,6 @@ void x_win_draw(void)
height += (g_slist_length(layouts) - 1) * settings.separator_height; height += (g_slist_length(layouts) - 1) * settings.separator_height;
height += g_slist_length(layouts) * settings.padding * 2; height += g_slist_length(layouts) * settings.padding * 2;
printf("(%d,%d)[%d]\n", width, height, settings.separator_height);
XResizeWindow(xctx.dpy, xctx.win, width, height); XResizeWindow(xctx.dpy, xctx.win, width, height);
/* FIXME frame color */ /* FIXME frame color */