@@ -88,9 +88,6 @@ export class MonitorModel implements FrontendApplicationContribution {
88
88
set autoscroll ( autoscroll : boolean ) {
89
89
if ( autoscroll === this . _autoscroll ) return ;
90
90
this . _autoscroll = autoscroll ;
91
- this . monitorManagerProxy . changeSettings ( {
92
- monitorUISettings : { autoscroll } ,
93
- } ) ;
94
91
this . storeState ( ) . then ( ( ) => {
95
92
this . onChangeEmitter . fire ( {
96
93
property : 'autoscroll' ,
@@ -110,9 +107,6 @@ export class MonitorModel implements FrontendApplicationContribution {
110
107
set timestamp ( timestamp : boolean ) {
111
108
if ( timestamp === this . _timestamp ) return ;
112
109
this . _timestamp = timestamp ;
113
- this . monitorManagerProxy . changeSettings ( {
114
- monitorUISettings : { timestamp } ,
115
- } ) ;
116
110
this . storeState ( ) . then ( ( ) =>
117
111
this . onChangeEmitter . fire ( {
118
112
property : 'timestamp' ,
@@ -132,9 +126,6 @@ export class MonitorModel implements FrontendApplicationContribution {
132
126
set lineEnding ( lineEnding : MonitorModel . EOL ) {
133
127
if ( lineEnding === this . _lineEnding ) return ;
134
128
this . _lineEnding = lineEnding ;
135
- this . monitorManagerProxy . changeSettings ( {
136
- monitorUISettings : { lineEnding } ,
137
- } ) ;
138
129
this . storeState ( ) . then ( ( ) =>
139
130
this . onChangeEmitter . fire ( {
140
131
property : 'lineEnding' ,
@@ -150,9 +141,6 @@ export class MonitorModel implements FrontendApplicationContribution {
150
141
set interpolate ( interpolate : boolean ) {
151
142
if ( interpolate === this . _interpolate ) return ;
152
143
this . _interpolate = interpolate ;
153
- this . monitorManagerProxy . changeSettings ( {
154
- monitorUISettings : { interpolate } ,
155
- } ) ;
156
144
this . storeState ( ) . then ( ( ) =>
157
145
this . onChangeEmitter . fire ( {
158
146
property : 'interpolate' ,
@@ -168,9 +156,6 @@ export class MonitorModel implements FrontendApplicationContribution {
168
156
set darkTheme ( darkTheme : boolean ) {
169
157
if ( darkTheme === this . _darkTheme ) return ;
170
158
this . _darkTheme = darkTheme ;
171
- this . monitorManagerProxy . changeSettings ( {
172
- monitorUISettings : { darkTheme } ,
173
- } ) ;
174
159
this . onChangeEmitter . fire ( {
175
160
property : 'darkTheme' ,
176
161
value : this . _darkTheme ,
@@ -184,9 +169,6 @@ export class MonitorModel implements FrontendApplicationContribution {
184
169
set wsPort ( wsPort : number ) {
185
170
if ( wsPort === this . _wsPort ) return ;
186
171
this . _wsPort = wsPort ;
187
- this . monitorManagerProxy . changeSettings ( {
188
- monitorUISettings : { wsPort } ,
189
- } ) ;
190
172
this . onChangeEmitter . fire ( {
191
173
property : 'wsPort' ,
192
174
value : this . _wsPort ,
@@ -200,9 +182,6 @@ export class MonitorModel implements FrontendApplicationContribution {
200
182
set serialPort ( serialPort : string ) {
201
183
if ( serialPort === this . _serialPort ) return ;
202
184
this . _serialPort = serialPort ;
203
- this . monitorManagerProxy . changeSettings ( {
204
- monitorUISettings : { serialPort } ,
205
- } ) ;
206
185
this . storeState ( ) . then ( ( ) =>
207
186
this . onChangeEmitter . fire ( {
208
187
property : 'serialPort' ,
@@ -218,9 +197,6 @@ export class MonitorModel implements FrontendApplicationContribution {
218
197
set connected ( connected : boolean ) {
219
198
if ( connected === this . _connected ) return ;
220
199
this . _connected = connected ;
221
- this . monitorManagerProxy . changeSettings ( {
222
- monitorUISettings : { connected } ,
223
- } ) ;
224
200
this . onChangeEmitter . fire ( {
225
201
property : 'connected' ,
226
202
value : this . _connected ,
0 commit comments