Fix plugin settings sync when multiple monitors use same layout

This commit is contained in:
Stone_Red
2026-08-03 00:56:04 +02:00
parent c48eb532f2
commit af2666f9a6
8 changed files with 319 additions and 12 deletions
@@ -46,4 +46,14 @@ public class Button : Setting
{
OnClick?.Invoke();
}
internal override string GetJsonValue()
{
return Value;
}
internal override void SetJsonValue(string value)
{
Value = value;
}
}
@@ -38,4 +38,14 @@ public class Label : Setting
Value = value;
Bold = bold;
}
internal override string GetJsonValue()
{
return Value;
}
internal override void SetJsonValue(string value)
{
Value = value;
}
}