mirror of https://github.com/odrling/Aegisub
Update the color spectrum view when a recently used color is selected in the color picker
Originally committed to SVN as r4815.
This commit is contained in:
parent
3c02917e20
commit
9083776b9c
|
@ -913,7 +913,6 @@ DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color, C
|
|||
rgb_spectrum[2] =
|
||||
hsl_spectrum =
|
||||
hsv_spectrum = 0;
|
||||
spectrum_dirty = true;
|
||||
|
||||
// generate spectrum slider bar images
|
||||
wxImage sliderimg(slider_width, 256, true);
|
||||
|
@ -1162,6 +1161,7 @@ void DialogColorPicker::SetColor(wxColour new_color)
|
|||
rgb_input[0]->SetValue(new_color.Red());
|
||||
rgb_input[1]->SetValue(new_color.Green());
|
||||
rgb_input[2]->SetValue(new_color.Blue());
|
||||
spectrum_dirty = true;
|
||||
UpdateFromRGB();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue