Author Topic: 2016.33 - problem with colour wash effect.  (Read 1230 times)

Offline T4Z

  • Newbie
  • *
  • Posts: 11
    • View Profile
2016.33 - problem with colour wash effect.
« on: June 02, 2016, 10:16:02 AM »
Hello all.
I have noticed a problem with 2016.33 and .34 with my colour washes. The "circular palette" box is checked on every colour wash if the count is set to 1. If the count is greater than 1 the circular palette box is unchanged. All of these boxes should be unchecked in the original sequence.

Thanks. Taz.

Offline Gilrock

  • Supporting Member
  • Hero Member
  • *
  • Posts: 6946
    • View Profile
Re: 2016.33 - problem with colour wash effect.
« Reply #1 on: June 02, 2016, 11:13:37 AM »
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

Offline dkulp

  • Supporting Member
  • Hero Member
  • *
  • Posts: 812
    • View Profile
Re: 2016.33 - problem with colour wash effect.
« Reply #2 on: June 02, 2016, 11:26:48 AM »
Actually, it should have only gone into that if the version is older than 4.2.20.   That's a bug I introduced.   Just pushed a fix.
Daniel Kulp
Framingham, MA

Offline T4Z

  • Newbie
  • *
  • Posts: 11
    • View Profile
Re: 2016.33 - problem with colour wash effect.
« Reply #3 on: June 02, 2016, 11:28:09 AM »
Thanks for the reply. Sequence was done in 2016.32 and I didn't even notice the change until I upgraded to .34 but it also happens in .33. I will give your suggestion a whirl.

Thanks very much for the help.