mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
[stage] Set minimum width/height to 1x1
Whoops, to maintain the old behaviour, make sure the default minimum width/height are 1x1.
This commit is contained in:
parent
fd11d3098f
commit
be11564b55
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user