From 6a00a504d4fc578f176bfe30542de92a568d095e Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 18 Feb 2013 15:51:48 -0500 Subject: [PATCH] backgroundMenu: Don't add an animation to the background menu We don't do this for shell entries nor for the message tray context menu, so it doesn't make sense to do it here, either. --- js/ui/backgroundMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/backgroundMenu.js b/js/ui/backgroundMenu.js index 2be22b959..6b50c6e1b 100644 --- a/js/ui/backgroundMenu.js +++ b/js/ui/backgroundMenu.js @@ -38,7 +38,7 @@ function addBackgroundMenu(actor) { function openMenu() { let [x, y] = global.get_pointer(); cursor.set_position(x, y); - actor._backgroundMenu.open(BoxPointer.PopupAnimation.FULL); + actor._backgroundMenu.open(BoxPointer.PopupAnimation.NONE); } let clickAction = new Clutter.ClickAction();