mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Very early KDE 6 release.
This commit is contained in:
parent
7cc4ccabbc
commit
686046d4f7
6272 changed files with 140920 additions and 529657 deletions
|
@ -0,0 +1,24 @@
|
|||
import QtQuick 2.15
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Layouts 1.3
|
||||
|
||||
GroupBox {
|
||||
id: configSection
|
||||
Layout.fillWidth: true
|
||||
default property alias _contentChildren: content.data
|
||||
|
||||
ColumnLayout {
|
||||
id: content
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
// 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 = configSection
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue