Add spacer comments

This commit is contained in:
Matti Viljanen 2021-04-09 23:25:43 +03:00
parent a86086d5a1
commit d47d3485b2
No known key found for this signature in database
GPG key ID: CF32A1495158F888

View file

@ -27,6 +27,12 @@ Page {
Component.onCompleted: {
}
//////////////////////////////////////////////////
//
// TIMERS AND PROCESSES
//
//////////////////////////////////////////////////
Timer {
id: startupTimer
interval: 100
@ -91,6 +97,12 @@ Page {
}
}
//////////////////////////////////////////////////
//
// MAIN CONTENT
//
//////////////////////////////////////////////////
SilicaFlickable {
anchors.fill: parent
contentHeight: flow.height + Theme.horizontalPageMargin
@ -116,6 +128,12 @@ Page {
title: qsTr("Settings")
}
//////////////////////////////////////////////////
//
// THE LEFT/TOP COLUMN
//
//////////////////////////////////////////////////
Column {
id: columnOne
width: isPortrait ? parent.width : parent.width / 2
@ -196,6 +214,13 @@ Page {
}
}
}
//////////////////////////////////////////////////
//
// THE RIGHT/BOTTOM COLUMN
//
//////////////////////////////////////////////////
Column {
id: columnTwo
width: isPortrait ? parent.width : parent.width / 2