mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Released AeroThemePlasma version 0.2
This commit is contained in:
parent
12e3e87d9e
commit
b2bd8e4a72
9136 changed files with 122224 additions and 118976 deletions
|
@ -0,0 +1,37 @@
|
|||
// Version 4
|
||||
|
||||
import QtQuick 2.0
|
||||
import QtQuick.Layouts 1.0
|
||||
|
||||
Item {
|
||||
id: page
|
||||
Layout.fillWidth: true
|
||||
default property alias _contentChildren: content.data
|
||||
implicitHeight: content.implicitHeight
|
||||
|
||||
ColumnLayout {
|
||||
id: content
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
|
||||
// Workaround for crash when using default on a Layout.
|
||||
// https://bugreports.qt.io/browse/QTBUG-52490
|
||||
// Still affecting Qt 5.7.0
|
||||
Component.onDestruction: {
|
||||
while (children.length > 0) {
|
||||
children[children.length - 1].parent = page
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
property alias showAppletVersion: appletVersionLoader.active
|
||||
Loader {
|
||||
id: appletVersionLoader
|
||||
active: false
|
||||
visible: active
|
||||
source: "AppletVersion.qml"
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.top
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue