| 57 | #include "prefs/WaveformScale.h" |
| 58 | |
| 59 | bool SetTrackBase::Apply(const CommandContext & context) |
| 60 | { |
| 61 | auto &tracks = TrackList::Get(context.project); |
| 62 | for (auto t : tracks) { |
| 63 | if (t->GetSelected()) |
| 64 | ApplyInner(context, *t); |
| 65 | } |
| 66 | return true; |
| 67 | } |
| 68 | |
| 69 | const ComponentInterfaceSymbol SetTrackStatusCommand::Symbol |
| 70 | { XO("Set Track Status") }; |
nothing calls this directly
no test coverage detected