Commit 2a96c641 authored by dogmaphobic's avatar dogmaphobic

Fix merge conflict.

parent 8e347812
...@@ -41,7 +41,6 @@ Rectangle { ...@@ -41,7 +41,6 @@ Rectangle {
property bool fullMode: true property bool fullMode: true
QGCPalette { id: __qgcPal; colorGroupEnabled: true } QGCPalette { id: __qgcPal; colorGroupEnabled: true }
ScreenTools { id: __screenTools }
ParameterEditorController { id: __controller } ParameterEditorController { id: __controller }
QGCLabel { id: __textControl; text: "X"; visible: false } QGCLabel { id: __textControl; text: "X"; visible: false }
...@@ -219,10 +218,10 @@ Rectangle { ...@@ -219,10 +218,10 @@ Rectangle {
x: __leftMargin x: __leftMargin
QGCLabel { QGCLabel {
height: __textHeight + (__screenTools.pixelSizeFactor * (9)) height: __textHeight + (ScreenTools.pixelSizeFactor * (9))
text: group text: group
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
font.pointSize: __screenTools.fontPointFactor * (16); font.pointSize: ScreenTools.fontPointFactor * (16);
} }
Rectangle { Rectangle {
...@@ -238,7 +237,7 @@ Rectangle { ...@@ -238,7 +237,7 @@ Rectangle {
Item { Item {
x: __leftMargin x: __leftMargin
width: parent.width width: parent.width
height: __textHeight + (__screenTools.pixelSizeFactor * (9)) height: __textHeight + (ScreenTools.pixelSizeFactor * (9))
Fact { Fact {
id: modelFact id: modelFact
...@@ -304,7 +303,7 @@ Rectangle { ...@@ -304,7 +303,7 @@ Rectangle {
height: firstButton.height height: firstButton.height
QGCLabel { QGCLabel {
font.pointSize: __screenTools.fontPointFactor * (20) font.pointSize: ScreenTools.fontPointFactor * (20)
visible: fullMode visible: fullMode
text: "PARAMETER EDITOR" text: "PARAMETER EDITOR"
} }
...@@ -361,10 +360,10 @@ Rectangle { ...@@ -361,10 +360,10 @@ Rectangle {
readonly property int componentId: parseInt(modelData) readonly property int componentId: parseInt(modelData)
QGCLabel { QGCLabel {
height: contentHeight + (__screenTools.pixelSizeFactor * (9)) height: contentHeight + (ScreenTools.pixelSizeFactor * (9))
text: "Component #: " + componentId.toString() text: "Component #: " + componentId.toString()
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
font.pointSize: __screenTools.fontPointFactor * (16); font.pointSize: ScreenTools.fontPointFactor * (16);
} }
Repeater { Repeater {
...@@ -386,7 +385,7 @@ Rectangle { ...@@ -386,7 +385,7 @@ Rectangle {
Item { Item {
width: 1 width: 1
height: __screenTools.pixelSizeFactor * (3) height: ScreenTools.pixelSizeFactor * (3)
} }
} // Column - Group } // Column - Group
} // Repeater - Groups } // Repeater - Groups
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment