remove fullrepresentation

This commit is contained in:
Flummi 2024-06-08 18:41:11 +02:00
parent 8b68977425
commit 3a1a5588d4
Signed by: Flummi
GPG Key ID: AA2AEF822A6F4817
2 changed files with 0 additions and 51 deletions

View File

@ -47,11 +47,4 @@ Item {
width: 2 width: 2
color: Kirigami.Theme.textColor color: Kirigami.Theme.textColor
} }
MouseArea {
anchors.fill: parent
onClicked: {
plasmoid.expanded = !plasmoid.expanded
}
}
} }

View File

@ -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
}
}
}