From fbf6e032d06d34b8bbb6546a470427a2d1f894fc Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Wed, 15 Feb 2012 17:58:56 +0100 Subject: [PATCH] modalDialog: Fix bindConstraint Clutter.BindCoordinate is an enum not a bitmask, so use Clutter.BindCoordinate.ALL instead of a bitmask of POSITION and SIZE. --- js/ui/modalDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/modalDialog.js b/js/ui/modalDialog.js index a6479595e..4478f9e38 100644 --- a/js/ui/modalDialog.js +++ b/js/ui/modalDialog.js @@ -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));