From 543b246ce677626263f01ea93a26c4506fc69114 Mon Sep 17 00:00:00 2001 From: 02090095 Date: Mon, 13 Nov 2023 21:08:44 +0300 Subject: [PATCH] =?UTF-8?q?fix=20=D0=A1=D0=BE=D1=85=D1=80=D0=B0=D0=BD?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=20=D1=82=D0=B5=D1=81=D1=82=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Common/Properties.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Common/Properties.java b/src/Common/Properties.java index ae363fa2..600bf058 100644 --- a/src/Common/Properties.java +++ b/src/Common/Properties.java @@ -56,6 +56,7 @@ public abstract class Properties { return false; //-- field.set(this, newValue); + this.Update(); return true; //-- } catch (Exception exception) { @@ -70,6 +71,7 @@ public abstract class Properties { boolean newValue = !oldValue; //--- field.set(this, newValue); + this.Update(); //-- } catch (Exception exception) { exception.printStackTrace();