From 1f274c04fb8aca1a53359b62192ecc54c2b281e9 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 18 Mar 2010 14:04:35 -0400 Subject: [PATCH] [placeDisplay] Add missing return statements Otherwise we get a warning. --- js/ui/placeDisplay.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/placeDisplay.js b/js/ui/placeDisplay.js index 46f5303b8..230bd74a3 100644 --- a/js/ui/placeDisplay.js +++ b/js/ui/placeDisplay.js @@ -460,6 +460,7 @@ DashPlaceDisplayItem.prototype = { let [stageX, stageY] = event.get_coords(); this._dragStartX = stageX; this._dragStartY = stageY; + return false; }, _onButtonRelease: function(actor, event) { @@ -468,6 +469,7 @@ DashPlaceDisplayItem.prototype = { this._dragStartX = null; this._dragStartY = null; + return false; }, _onHoverChanged: function(button) {