Are you talking about upgrading an older sequence? If so we run it through code that makes adjustments to all the settings. The Fit To Time stuff was removed so we have to make adjustments for that. Below shows what will happen to the settings during the upgrade. If you don't like a setting just change it and hit Save and it won't ever run through the upgrade code again. If that's not it then I don't know what you meant.
case EffectManager::eff_COLORWASH:
424 if (settings.Get("E_TEXTCTRL_ColorWash_Cycles", "") == "")
425 {
426 double count = wxAtoi(settings.Get("E_SLIDER_ColorWash_Count", "1"));
427 settings.erase("E_SLIDER_ColorWash_Count");
428 if (settings["T_CHECKBOX_FitToTime"] == "1")
429 {
430 count = 1.0;
431 settings["E_CHECKBOX_ColorWash_CircularPalette"] = "0";
432 }
433 else
434 {
435 settings["E_CHECKBOX_ColorWash_CircularPalette"] = "1";
436 }
437 settings["E_TEXTCTRL_ColorWash_Cycles"] = wxString::Format("%0.2f", count);
438 }
439