From a32b63d2972984b94db74cb3037254befe26411f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Tue, 26 Feb 2013 01:14:05 +0100 Subject: [PATCH] Set edge from test applet --- .../testcomponentsapplet/contents/ui/DialogsPage.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shell/applets/testcomponentsapplet/contents/ui/DialogsPage.qml b/src/shell/applets/testcomponentsapplet/contents/ui/DialogsPage.qml index 71a872a81..903346122 100644 --- a/src/shell/applets/testcomponentsapplet/contents/ui/DialogsPage.qml +++ b/src/shell/applets/testcomponentsapplet/contents/ui/DialogsPage.qml @@ -176,7 +176,7 @@ PlasmaComponents.Page { width: _h text: "Top" onClicked: { - //locationDialog.location = PlasmaCore.Plasma.TopEdge; + locationDialog.location = PlasmaCore.Plasma.TopEdge; locationDialog.visible = true } } @@ -184,7 +184,7 @@ PlasmaComponents.Page { text: "Bottom" width: _h onClicked: { - //locationDialog.location = PlasmaCore.Plasma.BottomEdge; + locationDialog.location = PlasmaCore.Plasma.BottomEdge; locationDialog.visible = true } } @@ -192,7 +192,7 @@ PlasmaComponents.Page { text: "Left" width: _h onClicked: { - //locationDialog.location = PlasmaCore.Plasma.LeftEdge; + locationDialog.location = PlasmaCore.Plasma.LeftEdge; locationDialog.visible = true } } @@ -200,7 +200,7 @@ PlasmaComponents.Page { text: "Right" width: _h onClicked: { - //locationDialog.location = PlasmaCore.Plasma.RightEdge; + locationDialog.location = PlasmaCore.Plasma.RightEdge; locationDialog.visible = true } }