diff --git a/mycroft/res/ui/WebViewHtmlFrame.qml b/mycroft/res/ui/WebViewHtmlFrame.qml index 67710441de68..25a57d24023d 100644 --- a/mycroft/res/ui/WebViewHtmlFrame.qml +++ b/mycroft/res/ui/WebViewHtmlFrame.qml @@ -61,6 +61,9 @@ Item { interactionBar.isRequested = true; } + onFullScreenRequested: { + request.accept() + } } Popup { diff --git a/mycroft/res/ui/WebViewUrlFrame.qml b/mycroft/res/ui/WebViewUrlFrame.qml index 6a1d5210213e..db60ae12b330 100644 --- a/mycroft/res/ui/WebViewUrlFrame.qml +++ b/mycroft/res/ui/WebViewUrlFrame.qml @@ -55,6 +55,10 @@ Item { interactionBar.interactionItem.requestedFeature = feature; interactionBar.isRequested = true; } + + onFullScreenRequested: { + request.accept() + } } Popup {