We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45ecd6d + c146b86 commit f4c0ec3Copy full SHA for f4c0ec3
octgnFX/Octgn/Play/Gui/ChatControl.xaml.cs
@@ -88,6 +88,8 @@ public bool HideErrors
88
{
89
return;
90
}
91
+ this.output.Document.Blocks.Clear();
92
+ lastId = -1;
93
this.hideErrors = value;
94
this.OnPropertyChanged("HideErrors");
95
@@ -116,7 +118,12 @@ public bool HideDebug
116
118
117
119
set
120
- if (value == this.hideDebug) return;
121
+ if (value.Equals(this.hideDebug))
122
+ {
123
+ return;
124
+ }
125
126
127
this.hideDebug = value;
128
OnPropertyChanged("HideDebug");
129
recentchanges.txt
@@ -1 +1 @@
1
-
+Hide Debug and Hide Error checkboxes will affect all previous chat log as well
0 commit comments