diff --git a/src/kirigami_ui/+windows/main.qml b/src/kirigami_ui/+windows/main.qml index 09939efe..55e04841 100644 --- a/src/kirigami_ui/+windows/main.qml +++ b/src/kirigami_ui/+windows/main.qml @@ -400,6 +400,14 @@ Kirigami.ApplicationWindow { checked: root.pageStack.currentItem.document.autoReload onTriggered: root.pageStack.currentItem.document.autoReload = checked } + Kirigami.Action { + id: fakeFullscreenSetting + text: i18nc("Main menu actions. Fake fullscreen behavior instead of requesting true fullscreen", "Fake fullscreen behavior") + icon.source: "qrc:/qt/qml/com/cuperino/qprompt/icons/view-fullscreen.svg" + checkable: true + checked: root.__fakeFullscreen + onTriggered: root.__fakeFullscreen = checked + } } // Kirigami.Action { // text: i18nc("Main menu actions", "Restore factory defaults")