diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2011-05-03 11:03:56 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2011-05-03 11:03:56 +0200 | 
| commit | 96034b0163273b377dd9e4520fe69d5b83f8482a (patch) | |
| tree | a36593d04a12b2ebe6152067fa989492889d201e | |
| parent | bce956523f56b88ec04c074cd55041c5b9a81c90 (diff) | |
winwidget_resize: Fix typo
| -rw-r--r-- | src/winwidget.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/winwidget.c b/src/winwidget.c index b82b375..964c835 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -773,7 +773,7 @@ void winwidget_resize(winwidget winwid, int w, int h)  			winwid->w = (w > scr->width) ? scr->width : w;  			winwid->h = (h > scr->height) ? scr->height : h;  		} -		if (winwid->fullscreen) { +		if (winwid->full_screen) {  			XGetWindowAttributes(disp, winwid->win, &attributes);  			XTranslateCoordinates(disp, winwid->win, attributes.root,  						-attributes.border_width - | 
