diff --git a/package/contents/ui/CompactRepresentation.qml b/package/contents/ui/CompactRepresentation.qml index 8ddb159..4f63354 100644 --- a/package/contents/ui/CompactRepresentation.qml +++ b/package/contents/ui/CompactRepresentation.qml @@ -47,11 +47,4 @@ Item { width: 2 color: Kirigami.Theme.textColor } - - MouseArea { - anchors.fill: parent - onClicked: { - plasmoid.expanded = !plasmoid.expanded - } - } } diff --git a/package/contents/ui/FullRepresentation.qml b/package/contents/ui/FullRepresentation.qml deleted file mode 100644 index c9f1ce8..0000000 --- a/package/contents/ui/FullRepresentation.qml +++ /dev/null @@ -1,44 +0,0 @@ -import QtQuick -import QtQuick.Layouts -import org.kde.plasma.plasmoid -import org.kde.plasma.core as PlasmaCore -import org.kde.kirigami as Kirigami - -import "./lib/helper.js" as Helper - -Item { - id: fullRep - - Layout.preferredWidth: 250 * PlasmaCore.Units.devicePixelRatio - Layout.preferredHeight: 250 * PlasmaCore.Units.devicePixelRatio - Layout.minimumWidth: Layout.preferredWidth - Layout.maximumWidth: Layout.preferredWidth - Layout.minimumHeight: Layout.preferredHeight - Layout.maximumHeight: Layout.preferredHeight - clip: true - - ColumnLayout { - id: wrapper - anchors.fill: parent - spacing: 0 - - RowLayout { - spacing: 0 - Layout.fillWidth: true - - ColumnLayout { - spacing: 0 - // Items - - Text { - text: "henlo" - color: PlasmaCore.Theme.textColor - } - } - } - - Item { - Layout.fillHeight: true - } - } -}