modalDialog: Fix bindConstraint

Clutter.BindCoordinate is an enum not a bitmask, so use Clutter.BindCoordinate.ALL
instead of a bitmask of POSITION and SIZE.
This commit is contained in:
Adel Gadllah 2012-02-15 17:58:56 +01:00
parent c8020e6559
commit fbf6e032d0

View File

@ -46,7 +46,7 @@ const ModalDialog = new Lang.Class({
Main.uiGroup.add_actor(this._group);
let constraint = new Clutter.BindConstraint({ source: global.stage,
coordinate: Clutter.BindCoordinate.POSITION | Clutter.BindCoordinate.SIZE });
coordinate: Clutter.BindCoordinate.ALL });
this._group.add_constraint(constraint);
this._group.connect('destroy', Lang.bind(this, this._onGroupDestroy));