From 2a8eea1ff5dea03ef5a9c8eb2a7e3c90ef3de3a7 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Thu, 28 May 2020 13:34:57 +0200 Subject: [PATCH] padOsd: Fix .allocate() call This was not updated to the API change in commit 9a8ced9f5b6. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1290 --- js/ui/padOsd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/padOsd.js b/js/ui/padOsd.js index f69653335..ddeb28e7d 100644 --- a/js/ui/padOsd.js +++ b/js/ui/padOsd.js @@ -415,7 +415,7 @@ var PadDiagram = GObject.registerClass({ childBox.y1 = y - natHeight / 2; childBox.y2 = y + natHeight / 2; - child.allocate(childBox, 0); + child.allocate(childBox); } vfunc_allocate(box) {