From 6746c45cd7b4e64b1fadf7b9a7f95268630339ed Mon Sep 17 00:00:00 2001 From: Eris Lund <38136789+0x5066@users.noreply.github.com> Date: Fri, 2 Jul 2021 07:33:05 +0200 Subject: [PATCH] lowercase'd findObject --- packages/webamp-modern-2/src/skin/Layout.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webamp-modern-2/src/skin/Layout.ts b/packages/webamp-modern-2/src/skin/Layout.ts index 3aa1af21..2973682e 100644 --- a/packages/webamp-modern-2/src/skin/Layout.ts +++ b/packages/webamp-modern-2/src/skin/Layout.ts @@ -38,7 +38,7 @@ export default class Layout extends Group { ) { // TODO: Maybe this should move to the container? if (actionTarget != null) { - const target = this.findObject(actionTarget); + const target = this.findobject(actionTarget); if (target != null) { target.handleAction(action, param, actionTarget); }