From d9b7ca883c709e7f6e3886e98ebaa673293ac844 Mon Sep 17 00:00:00 2001 From: compudj Date: Mon, 29 Sep 2003 01:48:00 +0000 Subject: [PATCH] quick fix git-svn-id: http://ltt.polymtl.ca/svn@276 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/modules/guiControlFlow/Drawing.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ltt/branches/poly/lttv/modules/guiControlFlow/Drawing.c b/ltt/branches/poly/lttv/modules/guiControlFlow/Drawing.c index e1a439a0..a7120b93 100644 --- a/ltt/branches/poly/lttv/modules/guiControlFlow/Drawing.c +++ b/ltt/branches/poly/lttv/modules/guiControlFlow/Drawing.c @@ -48,6 +48,9 @@ void Drawing_Data_Request(Drawing_t *Drawing, gint width, gint height) { + if(width < 0) return ; + if(height < 0) return ; + gdk_draw_rectangle (Pixmap, Drawing->Drawing_Area_V->style->white_gc, TRUE, -- 2.34.1