@@ -342,18 +342,18 @@ public void SetupTextList()
342342
343343 }
344344
345- textListData . tableView . ReloadData ( ) ;
345+ textListData . TableView . ReloadData ( ) ;
346346
347347 switch ( Configuration . PluginConfig . Instance . SelectionType )
348348 {
349349 case 0 :
350- textListData . tableView . SelectCellWithIdx ( 0 ) ;
350+ textListData . TableView . SelectCellWithIdx ( 0 ) ;
351351 break ;
352352 case 1 :
353- textListData . tableView . SelectCellWithIdx ( 1 ) ;
353+ textListData . TableView . SelectCellWithIdx ( 1 ) ;
354354 break ;
355355 case 2 :
356- textListData . tableView . SelectCellWithIdx ( Configuration . PluginConfig . Instance . SelectedTextEntry + 2 ) ;
356+ textListData . TableView . SelectCellWithIdx ( Configuration . PluginConfig . Instance . SelectedTextEntry + 2 ) ;
357357 break ;
358358 }
359359 }
@@ -362,7 +362,7 @@ public void SetupFontList()
362362 //this should prevent selecting a font that doesn't exist
363363 if ( Configuration . PluginConfig . Instance . Font > FontManager . Fonts . Count )
364364 Configuration . PluginConfig . Instance . Font = FontManager . Fonts . Count ;
365- fontListData . data . Clear ( ) ;
365+ fontListData . Data . Clear ( ) ;
366366 foreach ( var font in FontManager . Fonts )
367367 {
368368 CustomListTableData . CustomCellInfo fontCell ;
@@ -374,26 +374,26 @@ public void SetupFontList()
374374 if ( name . ToLower ( ) . Equals ( "neontubes2" ) || name . ToLower ( ) . Equals ( "beon" ) || name . ToLower ( ) . Equals ( "teko" ) )
375375 {
376376 fontCell = new CustomListTableData . CustomCellInfo ( name , "Built-In" ) ;
377- fontListData . data . Add ( fontCell ) ;
377+ fontListData . Data . Add ( fontCell ) ;
378378 }
379379 else
380380 {
381381 fontCell = new CustomListTableData . CustomCellInfo ( name ) ;
382- fontListData . data . Add ( fontCell ) ;
382+ fontListData . Data . Add ( fontCell ) ;
383383 }
384384 }
385385 catch ( Exception e )
386386 {
387387 fontCell = new CustomListTableData . CustomCellInfo ( "Broken Font" , "please remove it" ) ;
388- fontListData . data . Add ( fontCell ) ;
388+ fontListData . Data . Add ( fontCell ) ;
389389 Plugin . Log . Critical ( "Exception while adding font:" ) ;
390390 Console . WriteLine ( e . ToString ( ) ) ;
391391 }
392392
393393 }
394- fontListData . tableView . ReloadData ( ) ;
394+ fontListData . TableView . ReloadData ( ) ;
395395
396- try { fontListData . tableView . SelectCellWithIdx ( Configuration . PluginConfig . Instance . Font ) ; }
396+ try { fontListData . TableView . SelectCellWithIdx ( Configuration . PluginConfig . Instance . Font ) ; }
397397 catch ( IndexOutOfRangeException ) { Plugin . Log . Critical ( "Tried to select a font beyond the bounds of the list" ) ; }
398398
399399
@@ -437,13 +437,13 @@ public void SelectCorrectCell(int selType, int choice)
437437 switch ( selType )
438438 {
439439 case 0 :
440- textListData . tableView . SelectCellWithIdx ( 0 ) ;
440+ textListData . TableView . SelectCellWithIdx ( 0 ) ;
441441 break ;
442442 case 1 :
443- textListData . tableView . SelectCellWithIdx ( 1 ) ;
443+ textListData . TableView . SelectCellWithIdx ( 1 ) ;
444444 break ;
445445 case 2 :
446- textListData . tableView . SelectCellWithIdx ( choice + 2 ) ;
446+ textListData . TableView . SelectCellWithIdx ( choice + 2 ) ;
447447 break ;
448448 }
449449 }
0 commit comments