From be11564b556a1b1c08b7b9e7a0a94bc00c4e6550 Mon Sep 17 00:00:00 2001 From: Chris Lord Date: Sat, 6 Feb 2010 14:04:47 +0100 Subject: [PATCH] [stage] Set minimum width/height to 1x1 Whoops, to maintain the old behaviour, make sure the default minimum width/height are 1x1. --- clutter/clutter-stage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c index bef66524f..9e6baa8be 100644 --- a/clutter/clutter-stage.c +++ b/clutter/clutter-stage.c @@ -1181,8 +1181,8 @@ clutter_stage_init (ClutterStage *self) priv->throttle_motion_events = TRUE; priv->color = default_stage_color; - priv->minimum_width = 640; - priv->minimum_height = 480; + priv->minimum_width = 1; + priv->minimum_height = 1; priv->perspective.fovy = 60.0; /* 60 Degrees */ priv->perspective.aspect = 1.0;