From 702d85b4d2e1ce8290fd741266c41bb4e1d3d401 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 24 Oct 2007 12:35:53 +0200 Subject: [PATCH] do not use c->screen but awesomeconf->screen in si --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index 21bf70a2..b105dc50 100644 --- a/client.c +++ b/client.c @@ -447,7 +447,7 @@ manage(Window w, XWindowAttributes *wa, awesome_config *awesomeconf) c->tab.isvisible = True; /* if window request fullscreen mode */ - if(c->w == screen_info[c->screen].width && c->h == screen_info[c->screen].height) + if(c->w == screen_info[awesomeconf->screen].width && c->h == screen_info[awesomeconf->screen].height) { c->x = 0; c->y = 0;