From 730fe7ea65bcadbe235e40bb54b2410d14495267 Mon Sep 17 00:00:00 2001
From: asmrobot <asmrobot@hotmail.com>
Date: Mon, 14 Oct 2019 04:33:21 +0000
Subject: [PATCH] add change channel

---
 src/RichCreator/ViewModels/ConfigViewModel.cs |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/RichCreator/ViewModels/ConfigViewModel.cs b/src/RichCreator/ViewModels/ConfigViewModel.cs
index bf7c58b..bfefab1 100644
--- a/src/RichCreator/ViewModels/ConfigViewModel.cs
+++ b/src/RichCreator/ViewModels/ConfigViewModel.cs
@@ -19,6 +19,24 @@
         private RunningModel runModel;
 
 
+
+        public bool IsGroup
+        {
+            get
+            {
+                return config.IsGroup;
+            }
+            set
+            {
+                if (config.IsGroup != value)
+                {
+                    config.IsGroup = value;
+                    this.RaisePropertyChanged("IsGroup");
+                }
+
+            }
+        }
+
         public string TGPDaemonPath
         {
             get

--
Gitblit v1.9.3