Skip to content

Commit

Permalink
misc: 不要将Wrapper的属性传给后端Watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Oct 27, 2024
1 parent ac0ff84 commit 82e9489
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public <X> void writeProperty(SingleProperty<X> property, X value)
{
disguiseProperties.put(property, value);

if (bindingWatcher != null)
if (!property.id().startsWith("wrapper_") && bindingWatcher != null)
bindingWatcher.writeProperty(property, value);
}

Expand Down

0 comments on commit 82e9489

Please sign in to comment.