From f5868f0a80f605e446b62eeb5b703c42527e8ed6 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Wed, 19 Feb 2025 20:48:27 +0100 Subject: [PATCH] Make dropdown update selection when reset to default --- src/ui/dropdown.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/dropdown.ts b/src/ui/dropdown.ts index 718058c7f99..ec433a35733 100644 --- a/src/ui/dropdown.ts +++ b/src/ui/dropdown.ts @@ -629,6 +629,8 @@ export class DropDown extends Phaser.GameObjects.Container { } } } + + this.onChange(); } }