mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 07:38:10 +00:00
LibWeb: Toggle media playback when clicking anywhere on the control box
Feels nicer to click anywhere on the control box to toggle playback, rather than needing to accurately click the playback button. Note this does not affect other behavior-specific buttons; i.e. if the mute button is pressed, we won't reach the playback toggle..
This commit is contained in:
parent
c2357a059e
commit
2c5c815f44
1 changed files with 2 additions and 1 deletions
|
@ -321,7 +321,8 @@ MediaPaintable::DispatchEventOfSameName MediaPaintable::handle_mouseup(Badge<Eve
|
|||
return DispatchEventOfSameName::Yes;
|
||||
}
|
||||
|
||||
return DispatchEventOfSameName::No;
|
||||
if (cached_layout_boxes.timeline_rect.has_value() && cached_layout_boxes.timeline_rect->contains(position))
|
||||
return DispatchEventOfSameName::No;
|
||||
}
|
||||
|
||||
media_element.toggle_playback().release_value_but_fixme_should_propagate_errors();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue