File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
src/Bonsai.ML.PointProcessDecoder.Design Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -347,16 +347,16 @@ public override void Load(IServiceProvider provider)
347347 Visible = true ,
348348 } ;
349349
350- _statusStrip . Items . AddRange ( [
351- pageIndexLabel ,
350+ _statusStrip . Items . AddRange ( new ToolStripItem [ ] {
351+ pageIndexLabel ,
352352 _pageIndexControl ,
353353 rowLabel ,
354354 _rowControl ,
355355 columnLabel ,
356356 _columnControl ,
357357 _displaySelectedButton ,
358358 _resetSelectedButton
359- ] ) ;
359+ } ) ;
360360
361361 var visualizerService = ( IDialogTypeVisualizerService ) provider . GetService ( typeof ( IDialogTypeVisualizerService ) ) ;
362362 visualizerService ? . AddControl ( _container ) ;
Original file line number Diff line number Diff line change @@ -324,16 +324,16 @@ public override void Load(IServiceProvider provider)
324324 Visible = true ,
325325 } ;
326326
327- _statusStrip . Items . AddRange ( [
328- pageIndexLabel ,
327+ _statusStrip . Items . AddRange ( new ToolStripItem [ ] {
328+ pageIndexLabel ,
329329 _pageIndexControl ,
330330 rowLabel ,
331331 _rowControl ,
332332 columnLabel ,
333333 _columnControl ,
334334 _displaySelectedButton ,
335335 _resetSelectedButton
336- ] ) ;
336+ } ) ;
337337
338338 var visualizerService = ( IDialogTypeVisualizerService ) provider . GetService ( typeof ( IDialogTypeVisualizerService ) ) ;
339339 visualizerService ? . AddControl ( _container ) ;
Original file line number Diff line number Diff line change @@ -125,10 +125,10 @@ public override void Load(IServiceProvider provider)
125125 }
126126 } ;
127127
128- Plot . VisualizerPropertiesDropDown . DropDownItems . AddRange ( [
128+ Plot . VisualizerPropertiesDropDown . DropDownItems . AddRange ( new ToolStripItem [ ] {
129129 capacityLabel ,
130130 capacityValue
131- ] ) ;
131+ } ) ;
132132
133133 Plot . View . HandleDestroyed += ( sender , e ) =>
134134 {
Original file line number Diff line number Diff line change @@ -130,10 +130,10 @@ public override void Load(IServiceProvider provider)
130130 }
131131 } ;
132132
133- Plot . VisualizerPropertiesDropDown . DropDownItems . AddRange ( [
133+ Plot . VisualizerPropertiesDropDown . DropDownItems . AddRange ( new ToolStripItem [ ] {
134134 capacityLabel ,
135135 capacityValue
136- ] ) ;
136+ } ) ;
137137
138138 Plot . View . HandleDestroyed += ( sender , e ) =>
139139 {
Original file line number Diff line number Diff line change @@ -308,16 +308,16 @@ public override void Load(IServiceProvider provider)
308308 Visible = true ,
309309 } ;
310310
311- _statusStrip . Items . AddRange ( [
312- pageIndexLabel ,
311+ _statusStrip . Items . AddRange ( new ToolStripItem [ ] {
312+ pageIndexLabel ,
313313 _pageIndexControl ,
314314 rowLabel ,
315315 _rowControl ,
316316 columnLabel ,
317317 _columnControl ,
318318 _displaySelectedButton ,
319319 _resetSelectedButton
320- ] ) ;
320+ } ) ;
321321
322322 var visualizerService = ( IDialogTypeVisualizerService ) provider . GetService ( typeof ( IDialogTypeVisualizerService ) ) ;
323323 visualizerService ? . AddControl ( _container ) ;
You can’t perform that action at this time.
0 commit comments