| 57 | { return VisitSettings<true>(S); } |
| 58 | |
| 59 | void SetEnvelopeCommand::PopulateOrExchange(ShuttleGui & S) |
| 60 | { |
| 61 | S.AddSpace(0, 5); |
| 62 | |
| 63 | S.StartMultiColumn(3, wxALIGN_CENTER); |
| 64 | { |
| 65 | S.Optional( bHasT ).TieNumericTextBox( XXO("Time:"), mT ); |
| 66 | S.Optional( bHasV ).TieNumericTextBox( XXO("Value:"), mV ); |
| 67 | S.Optional( bHasDelete ).TieCheckBox( XXO("Delete"), mbDelete ); |
| 68 | } |
| 69 | S.EndMultiColumn(); |
| 70 | } |
| 71 | |
| 72 | bool SetEnvelopeCommand::ApplyInner(const CommandContext &context, Track &t) |
| 73 | { |
nothing calls this directly
no test coverage detected