diff options
| author | ulteq <ulteq@web.de> | 2018-01-17 09:57:36 +0100 | 
|---|---|---|
| committer | ulteq <ulteq@web.de> | 2018-03-10 21:30:54 +0100 | 
| commit | f111cef018432cd12d9989c4f8b4ecd3dfa186bb (patch) | |
| tree | 6a172451b33484334c17ff1c6475dd9b16ade4a6 /src | |
| parent | b71d8407eea710d654438f423b6f56eb323ee5d2 (diff) | |
Fix indentation
Diffstat (limited to 'src')
| -rw-r--r-- | src/winwidget.c | 21 | 
1 files changed, 10 insertions, 11 deletions
| diff --git a/src/winwidget.c b/src/winwidget.c index 39d7d7b..1ea6e9c 100644 --- a/src/winwidget.c +++ b/src/winwidget.c @@ -806,10 +806,10 @@ void winwidget_resize(winwidget winwid, int w, int h, int force_resize)  	D(("   x %d y %d w %d h %d\n", attributes.x, attributes.y, winwid->w,  		winwid->h)); -    if ((opt.geom_flags & (WidthValue | HeightValue)) && !force_resize) { -        winwid->had_resize = 1; -        return; -    } +	if ((opt.geom_flags & (WidthValue | HeightValue)) && !force_resize) { +		winwid->had_resize = 1; +		return; +	}  	if (winwid && ((winwid->w != w) || (winwid->h != h))) {  		if (opt.screen_clip) {  			double required_zoom = 1.0; @@ -820,13 +820,12 @@ void winwidget_resize(winwidget winwid, int w, int h, int force_resize)  			winwid->h = winwid->im_h * required_zoom;  		}  		if (winwid->full_screen) { -            XTranslateCoordinates(disp, winwid->win, attributes.root, -                        -attributes.border_width - -                        attributes.x, -                        -attributes.border_width - attributes.y, &tc_x, &tc_y, &dw); -            winwid->x = tc_x; -            winwid->y = tc_y; -            XMoveResizeWindow(disp, winwid->win, tc_x, tc_y, winwid->w, winwid->h); +			XTranslateCoordinates(disp, winwid->win, attributes.root, +						-attributes.border_width - attributes.x, +						-attributes.border_width - attributes.y, &tc_x, &tc_y, &dw); +			winwid->x = tc_x; +			winwid->y = tc_y; +			XMoveResizeWindow(disp, winwid->win, tc_x, tc_y, winwid->w, winwid->h);  		} else  			XResizeWindow(disp, winwid->win, winwid->w, winwid->h); | 
