The picker stops working properly when fast enter play mode is enabled. The most obvious effect is that the hue slider on the left is white (ColorSliderImage's Awake is broken). There are also occasional errors in the console.
https://forum.unity.com/threads/configurable-enter-play-mode.768689/
ExecuteInEditMode/ExecuteAlways scripts are not destroyed/awaken - no OnDestroy/Awake calls for those.
Watch out for Awake/OnEnable methods which check EditorApplication.isPlaying property - Awake is not called and OnEnable is called only when EditorApplication.isPlaying is already true on Play Mode change.
The picker stops working properly when fast enter play mode is enabled. The most obvious effect is that the hue slider on the left is white (ColorSliderImage's Awake is broken). There are also occasional errors in the console.
https://forum.unity.com/threads/configurable-enter-play-mode.768689/