From 88fa02147eef627be505352402a87243074927d8 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Sun, 30 May 2021 21:27:51 -0300 Subject: [PATCH] dnd: Return Clutter.EVENT_STOP instead of true Trivial cleanup. Clutter.EVENT_STOP is more semantic, and this 'true' is inconsistent with the 'return Clutter.EVENT_PROPAGATE;' a few lines above. Part-of: --- js/ui/dnd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/dnd.js b/js/ui/dnd.js index 34ed8aefc..252ebb85c 100644 --- a/js/ui/dnd.js +++ b/js/ui/dnd.js @@ -518,7 +518,7 @@ var _Draggable = class _Draggable { } } - return true; + return Clutter.EVENT_STOP; } _pickTargetActor() {