v1.5.0: bigger spaced euro sign, trend arrows on flip/nixie, two-phase flip cascade (reset to 0 over 2s then new values), fix nixie flicker endurance
This commit is contained in:
+12
-2
@@ -142,7 +142,12 @@ Item {
|
||||
source: root.modeSource
|
||||
onLoaded: {
|
||||
item.display = Qt.binding(function () { return root.displayText; });
|
||||
item.trendColor = Qt.binding(function () { return root.priceColor; });
|
||||
if (item.trendColor !== undefined) {
|
||||
item.trendColor = Qt.binding(function () { return root.priceColor; });
|
||||
}
|
||||
if (item.trendDir !== undefined) {
|
||||
item.trendDir = Qt.binding(function () { return root.trend; });
|
||||
}
|
||||
if (item.flapSeconds !== undefined) {
|
||||
item.flapSeconds = Qt.binding(function () { return root.flapSeconds; });
|
||||
}
|
||||
@@ -183,7 +188,12 @@ Item {
|
||||
source: root.modeSource
|
||||
onLoaded: {
|
||||
item.display = Qt.binding(function () { return root.displayText; });
|
||||
item.trendColor = Qt.binding(function () { return root.priceColor; });
|
||||
if (item.trendColor !== undefined) {
|
||||
item.trendColor = Qt.binding(function () { return root.priceColor; });
|
||||
}
|
||||
if (item.trendDir !== undefined) {
|
||||
item.trendDir = Qt.binding(function () { return root.trend; });
|
||||
}
|
||||
if (item.flapSeconds !== undefined) {
|
||||
item.flapSeconds = Qt.binding(function () { return root.flapSeconds; });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user