Fix small warning with NTextBox
This commit is contained in:
parent
880d6610fe
commit
ea22af05d1
11 changed files with 32 additions and 4 deletions
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "info"
|
||||
readonly property string tabLabel: "About"
|
||||
readonly property int tabIndex: 8
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@ import qs.Widgets
|
|||
Item {
|
||||
// Optional scaling prop to match other tabs
|
||||
property real scaling: 1
|
||||
// Tab metadata
|
||||
readonly property string tabIcon: "web_asset"
|
||||
readonly property string tabLabel: "Bar"
|
||||
readonly property int tabIndex: 1
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "monitor"
|
||||
readonly property string tabLabel: "Display"
|
||||
readonly property int tabIndex: 5
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -9,6 +9,10 @@ Item {
|
|||
// Public API
|
||||
// Scaling factor provided by the parent settings window
|
||||
property real scaling: 1
|
||||
// Tab metadata
|
||||
readonly property string tabIcon: "tune"
|
||||
readonly property string tabLabel: "General"
|
||||
readonly property int tabIndex: 0
|
||||
|
||||
anchors.fill: parent
|
||||
implicitWidth: parent ? parent.width : 0
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "more_horiz"
|
||||
readonly property string tabLabel: "Misc"
|
||||
readonly property int tabIndex: 7
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "wifi"
|
||||
readonly property string tabLabel: "Network"
|
||||
readonly property int tabIndex: 4
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "videocam"
|
||||
readonly property string tabLabel: "Screen Recorder"
|
||||
readonly property int tabIndex: 3
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "schedule"
|
||||
readonly property string tabLabel: "Time & Weather"
|
||||
readonly property int tabIndex: 2
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,9 @@ import qs.Widgets
|
|||
|
||||
Item {
|
||||
property real scaling: 1
|
||||
readonly property string tabIcon: "image"
|
||||
readonly property string tabLabel: "Wallpaper"
|
||||
readonly property int tabIndex: 6
|
||||
anchors.fill: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue