diff --git a/containment/package/contents/ui/applet/communicator/LatteBridge.qml b/containment/package/contents/ui/applet/communicator/LatteBridge.qml index 309e2e3ce..a0cf7a181 100644 --- a/containment/package/contents/ui/applet/communicator/LatteBridge.qml +++ b/containment/package/contents/ui/applet/communicator/LatteBridge.qml @@ -80,14 +80,6 @@ Item{ // @since: 0.9 readonly property bool parabolicEffectEnabled: root.parabolicEffectEnabled && !appletItem.originalAppletBehavior - // NAME: screenMarginEnabled - // USAGE: read-only - // EXPLANATION: Screen Edge Margin is enabled or not for this Latte View - // USE CASE: it can be used from applets that want to be adjusted based - // on the screen margin applied without losing any of their functionality - // @since: 0.10 - readonly property bool screenEdgeMarginEnabled: root.screenEdgeMarginEnabled - // NAME: iconSize // USAGE: read-only // EXPLANATION: The current icon size used in the Latte View diff --git a/containment/package/contents/ui/applet/indicator/Bridge.qml b/containment/package/contents/ui/applet/indicator/Bridge.qml index 62d67819b..9e52538cf 100644 --- a/containment/package/contents/ui/applet/indicator/Bridge.qml +++ b/containment/package/contents/ui/applet/indicator/Bridge.qml @@ -70,7 +70,6 @@ Item{ readonly property bool progressVisible: false /*since 0.9.2*/ readonly property real progress: 0 /*since 0.9.2*/ - readonly property bool screenEdgeMarginEnabled: root.screenEdgeMarginEnabled /*since 0.10*/ readonly property int screenEdgeMargin: root.localScreenEdgeMargin /*since 0.10*/ readonly property bool usePlasmaTabsStyle: !indicators.enabledForApplets diff --git a/plasmoid/package/contents/ui/main.qml b/plasmoid/package/contents/ui/main.qml index 1daef838b..b09cb6662 100644 --- a/plasmoid/package/contents/ui/main.qml +++ b/plasmoid/package/contents/ui/main.qml @@ -276,7 +276,6 @@ Item { } } - readonly property bool screenEdgeMarginEnabled: latteBridge ? latteBridge.screenEdgeMarginEnabled : false readonly property int screenEdgeMargin: latteBridge ? latteBridge.screenEdgeMargin : 0 //END Latte Dock Communicator diff --git a/plasmoid/package/contents/ui/task/indicator/Bridge.qml b/plasmoid/package/contents/ui/task/indicator/Bridge.qml index 4f894b386..9507a89a1 100644 --- a/plasmoid/package/contents/ui/task/indicator/Bridge.qml +++ b/plasmoid/package/contents/ui/task/indicator/Bridge.qml @@ -73,7 +73,6 @@ Item { readonly property bool progressVisible: wrapper.progressVisible /*since 0.9.2*/ readonly property real progress: wrapper.progress /*since 0.9.2*/ - readonly property bool screenEdgeMarginEnabled: root.screenEdgeMarginEnabled /*since 0.10*/ readonly property int screenEdgeMargin: root.screenEdgeMargin /*since 0.10*/ readonly property bool usePlasmaTabsStyle: false