| 781 | } |
| 782 | |
| 783 | void ColorPicker::ScheduleColorUpdate(Windows::UI::Color newColor, bool isFromSpectrum) |
| 784 | { |
| 785 | if (!IsAlphaEnabled()) |
| 786 | { |
| 787 | newColor.A = 255; |
| 788 | } |
| 789 | |
| 790 | m_UpdatedRgbColor = newColor; |
| 791 | m_UpdateFromSpectrum = isFromSpectrum; |
| 792 | } |
| 793 | |
| 794 | void ColorPicker::UpdateColorRightNow(Windows::UI::Color newColor, bool isFromSpectrum) |
| 795 | { |
nothing calls this directly
no outgoing calls
no test coverage detected