Ladybird+LibWeb+WebContent: Add context menu controls for muting audio

This commit is contained in:
Timothy Flynn 2023-06-16 11:29:54 -04:00 committed by Andreas Kling
commit 9e95c9892c
Notes: sideshowbarker 2024-07-17 00:23:42 +09:00
16 changed files with 78 additions and 0 deletions

View file

@ -156,6 +156,11 @@ void ViewImplementation::toggle_media_play_state()
client().async_toggle_media_play_state();
}
void ViewImplementation::toggle_media_mute_state()
{
client().async_toggle_media_mute_state();
}
void ViewImplementation::toggle_media_loop_state()
{
client().async_toggle_media_loop_state();