Divorce stored TPP lead-in/out values from config
There's no real reason to link these as far as I can tell, and plenty of valid reasons not to
This commit is contained in:
parent
2411617158
commit
293673fef1
3 changed files with 12 additions and 4 deletions
|
@ -144,8 +144,8 @@ DialogTimingProcessor::DialogTimingProcessor(agi::Context *c)
|
||||||
d.SetIcon(GETICON(timing_processor_toolbutton_16));
|
d.SetIcon(GETICON(timing_processor_toolbutton_16));
|
||||||
|
|
||||||
// Read options
|
// Read options
|
||||||
leadIn = OPT_GET("Audio/Lead/IN")->GetInt();
|
leadIn = OPT_GET("Tool/Timing Post Processor/Lead/IN")->GetInt();
|
||||||
leadOut = OPT_GET("Audio/Lead/OUT")->GetInt();
|
leadOut = OPT_GET("Tool/Timing Post Processor/Lead/OUT")->GetInt();
|
||||||
beforeStart = OPT_GET("Tool/Timing Post Processor/Threshold/Key Start Before")->GetInt();
|
beforeStart = OPT_GET("Tool/Timing Post Processor/Threshold/Key Start Before")->GetInt();
|
||||||
beforeEnd = OPT_GET("Tool/Timing Post Processor/Threshold/Key End Before")->GetInt();
|
beforeEnd = OPT_GET("Tool/Timing Post Processor/Threshold/Key End Before")->GetInt();
|
||||||
afterStart = OPT_GET("Tool/Timing Post Processor/Threshold/Key Start After")->GetInt();
|
afterStart = OPT_GET("Tool/Timing Post Processor/Threshold/Key Start After")->GetInt();
|
||||||
|
@ -305,8 +305,8 @@ void DialogTimingProcessor::UpdateControls() {
|
||||||
void DialogTimingProcessor::OnApply(wxCommandEvent &) {
|
void DialogTimingProcessor::OnApply(wxCommandEvent &) {
|
||||||
d.TransferDataFromWindow();
|
d.TransferDataFromWindow();
|
||||||
// Save settings
|
// Save settings
|
||||||
OPT_SET("Audio/Lead/IN")->SetInt(leadIn);
|
OPT_SET("Tool/Timing Post Processor/Lead/IN")->SetInt(leadIn);
|
||||||
OPT_SET("Audio/Lead/OUT")->SetInt(leadOut);
|
OPT_SET("Tool/Timing Post Processor/Lead/OUT")->SetInt(leadOut);
|
||||||
OPT_SET("Tool/Timing Post Processor/Threshold/Key Start Before")->SetInt(beforeStart);
|
OPT_SET("Tool/Timing Post Processor/Threshold/Key Start Before")->SetInt(beforeStart);
|
||||||
OPT_SET("Tool/Timing Post Processor/Threshold/Key Start After")->SetInt(afterStart);
|
OPT_SET("Tool/Timing Post Processor/Threshold/Key Start After")->SetInt(afterStart);
|
||||||
OPT_SET("Tool/Timing Post Processor/Threshold/Key End Before")->SetInt(beforeEnd);
|
OPT_SET("Tool/Timing Post Processor/Threshold/Key End Before")->SetInt(beforeEnd);
|
||||||
|
|
|
@ -552,6 +552,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Only Selection" : false,
|
"Only Selection" : false,
|
||||||
|
"Lead" : {
|
||||||
|
"IN" : 100,
|
||||||
|
"OUT" : 350
|
||||||
|
},
|
||||||
"Threshold" : {
|
"Threshold" : {
|
||||||
"Adjacent Gap" : 300,
|
"Adjacent Gap" : 300,
|
||||||
"Adjacent Overlap" : 50,
|
"Adjacent Overlap" : 50,
|
||||||
|
|
|
@ -552,6 +552,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Only Selection" : false,
|
"Only Selection" : false,
|
||||||
|
"Lead" : {
|
||||||
|
"IN" : 100,
|
||||||
|
"OUT" : 350
|
||||||
|
},
|
||||||
"Threshold" : {
|
"Threshold" : {
|
||||||
"Adjacent Gap" : 300,
|
"Adjacent Gap" : 300,
|
||||||
"Adjacent Overlap" : 50,
|
"Adjacent Overlap" : 50,
|
||||||
|
|
Loading…
Reference in a new issue