Add spacer comments
This commit is contained in:
parent
a86086d5a1
commit
d47d3485b2
1 changed files with 25 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue