mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb: Allow input color to give continuous updates
This commit is contained in:
parent
cf69fd0a09
commit
0dd5aa40a8
Notes:
sideshowbarker
2024-07-17 09:49:33 +09:00
Author: https://github.com/bplaat
Commit: 0dd5aa40a8
Pull-request: https://github.com/SerenityOS/serenity/pull/22246
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/nico
13 changed files with 53 additions and 19 deletions
|
@ -1063,9 +1063,9 @@ void ConnectionFromClient::prompt_closed(Optional<String> const& response)
|
|||
page().page().prompt_closed(response);
|
||||
}
|
||||
|
||||
void ConnectionFromClient::color_picker_closed(Optional<Color> const& picked_color)
|
||||
void ConnectionFromClient::color_picker_update(Optional<Color> const& picked_color, Web::HTML::ColorPickerUpdateState const& state)
|
||||
{
|
||||
page().page().color_picker_closed(picked_color);
|
||||
page().page().color_picker_update(picked_color, state);
|
||||
}
|
||||
|
||||
void ConnectionFromClient::select_dropdown_closed(Optional<String> const& value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue