mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
LibWeb+UI: Rename ChromeInputData to BrowserInputData
This commit is contained in:
Notes:
github-actions[bot]
2025-03-15 23:58:47 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/e20d7be15ff Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3959 Reviewed-by: https://github.com/awesomekling ✅
@@ -203,13 +203,13 @@ void ViewImplementation::enqueue_input_event(Web::InputEvent event)
|
||||
|
||||
m_pending_input_events.tail().visit(
|
||||
[this](Web::KeyEvent const& event) {
|
||||
client().async_key_event(m_client_state.page_index, event.clone_without_chrome_data());
|
||||
client().async_key_event(m_client_state.page_index, event.clone_without_browser_data());
|
||||
},
|
||||
[this](Web::MouseEvent const& event) {
|
||||
client().async_mouse_event(m_client_state.page_index, event.clone_without_chrome_data());
|
||||
client().async_mouse_event(m_client_state.page_index, event.clone_without_browser_data());
|
||||
},
|
||||
[this](Web::DragEvent& event) {
|
||||
auto cloned_event = event.clone_without_chrome_data();
|
||||
auto cloned_event = event.clone_without_browser_data();
|
||||
cloned_event.files = move(event.files);
|
||||
|
||||
client().async_drag_event(m_client_state.page_index, cloned_event);
|
||||
|
||||
Reference in New Issue
Block a user