@@ -56,11 +56,7 @@ public Row(SongFile song, Action<SongFile> buttonAction) {
56
56
CreateLabel ( song . Album . FixedWidthString ( 20 ) ) ,
57
57
CreateLabel ( song . Year . ToString ( ) ) ,
58
58
CreateLabel ( song . Length . ToMinSec ( ) ) ,
59
- CreateLabel ( song . GetInstrumentChars ( ) ) ,
60
- CreateLabel ( mainI ? . Name ) ,
61
- CreateLabel ( Instrument . CalcTuningName ( mainI ? . Tuning ) ) ,
62
- CreateLabel ( mainI ? . NoteCount . ToString ( ) ) ,
63
- CreateLabel ( mainI ? . GetNoteDensity ( song ) . ToFixedPlaces ( 2 , false ) )
59
+ CreateLabel ( song . GetInstrumentChars ( ) )
64
60
} ;
65
61
}
66
62
@@ -87,11 +83,7 @@ private void RowSelectedForReal(InputEvent @event)
87
83
new Column ( "Album" , ( s ) => s . Album ) ,
88
84
new Column ( "Year" , ( s ) => s . Year ) ,
89
85
new Column ( "Length" , ( s ) => s . Length ) ,
90
- new Column ( "Parts" , ( s ) => s . GetInstrumentChars ( ) ) ,
91
- new Column ( "Main" , ( s ) => s . GetMainInstrument ( ) ? . Name ) ,
92
- new Column ( "Tuning" , ( s ) => Instrument . CalcTuningName ( s . GetMainInstrument ( ) ? . Tuning , s . GetMainInstrument ( ) ? . CapoFret ) ) ,
93
- new Column ( "Notes" , ( s ) => s . GetMainInstrument ( ) ? . GetNoteDensity ( s ) ) ,
94
- new Column ( "Density" , ( s ) => s . GetMainInstrument ( ) ? . NoteCount ) ,
86
+ new Column ( "Parts" , ( s ) => s . GetInstrumentChars ( ) )
95
87
} ;
96
88
97
89
private readonly List < Row > _rows ;
0 commit comments