mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
LibWeb: Allow input color to give continuous updates
This commit is contained in:
committed by
Andrew Kaster
parent
cf69fd0a09
commit
0dd5aa40a8
@@ -231,9 +231,9 @@ void ViewImplementation::prompt_closed(Optional<String> response)
|
||||
client().async_prompt_closed(move(response));
|
||||
}
|
||||
|
||||
void ViewImplementation::color_picker_closed(Optional<Color> picked_color)
|
||||
void ViewImplementation::color_picker_update(Optional<Color> picked_color, Web::HTML::ColorPickerUpdateState state)
|
||||
{
|
||||
client().async_color_picker_closed(picked_color);
|
||||
client().async_color_picker_update(picked_color, state);
|
||||
}
|
||||
|
||||
void ViewImplementation::select_dropdown_closed(Optional<String> value)
|
||||
|
||||
Reference in New Issue
Block a user