From 40be3e610d63cac5e55862ece54461b194a1d7fe Mon Sep 17 00:00:00 2001 From: codereader Date: Sat, 16 Oct 2021 12:56:43 +0200 Subject: [PATCH] #5613: Fix signal emission on changed key value --- libs/selection/CollectiveSpawnargs.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/selection/CollectiveSpawnargs.h b/libs/selection/CollectiveSpawnargs.h index a63594fa37..5f815fb21d 100644 --- a/libs/selection/CollectiveSpawnargs.h +++ b/libs/selection/CollectiveSpawnargs.h @@ -1,11 +1,12 @@ #pragma once -#include "ientity.h" #include #include #include #include #include +#include "ientity.h" +#include "i18n.h" namespace selection { @@ -286,7 +287,7 @@ class CollectiveSpawnargs { // Value differs, the set is no longer sharing a single value keyValueSet.valueIsEqualOnAllEntities = false; - _sigKeyRemoved.emit(key); + _sigKeyValueSetChanged.emit(key, ""); } } }