From 1e45c6bafc8419930958103cc1651ff86cf5d84d Mon Sep 17 00:00:00 2001 From: Miller Puckette Date: Fri, 20 Jul 2007 03:25:21 +0000 Subject: various bug fixes. svn path=/trunk/; revision=8186 --- pd/src/g_canvas.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pd/src/g_canvas.c') diff --git a/pd/src/g_canvas.c b/pd/src/g_canvas.c index 5a52a07a..10f897c1 100644 --- a/pd/src/g_canvas.c +++ b/pd/src/g_canvas.c @@ -1048,12 +1048,12 @@ void canvas_loadbang(t_canvas *x) or something. Anyway, we just add the 2 pixels back here; seems we have to do this for linux but not MSW; not sure about MacOS. */ -#ifdef MSW -#define HORIZBORDER 0 -#define VERTBORDER 0 -#else +#ifdef __unix__ #define HORIZBORDER 2 #define VERTBORDER 2 +#else +#define HORIZBORDER 4 +#define VERTBORDER 4 #endif static void canvas_relocate(t_canvas *x, t_symbol *canvasgeom, -- cgit v1.2.1