mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
fix(spectrum): minimal signal new default to 1%
This commit is contained in:
@@ -13,7 +13,7 @@ Item {
|
||||
|
||||
// Minimum signal properties
|
||||
property bool showMinimumSignal: false
|
||||
property real minimumSignalValue: 0.05 // Default to 5% of height
|
||||
property real minimumSignalValue: 0.01 // Default to 1% of height
|
||||
|
||||
// Pre compute horizontal mirroring
|
||||
readonly property int valuesCount: (values && values.length !== undefined) ? values.length : 0
|
||||
|
||||
@@ -12,7 +12,7 @@ Item {
|
||||
|
||||
// Minimum signal properties
|
||||
property bool showMinimumSignal: false
|
||||
property real minimumSignalValue: 0.05 // Default to 5% of height
|
||||
property real minimumSignalValue: 0.01 // Default to 1% of height
|
||||
|
||||
// Pre-compute mirroring
|
||||
readonly property int valuesCount: (values && values.length !== undefined) ? values.length : 0
|
||||
|
||||
@@ -13,7 +13,7 @@ Item {
|
||||
|
||||
// Minimum signal properties
|
||||
property bool showMinimumSignal: false
|
||||
property real minimumSignalValue: 0.05 // Default to 5% of height
|
||||
property real minimumSignalValue: 0.01 // Default to 1% of height
|
||||
|
||||
readonly property int valuesCount: (values && values.length !== undefined) ? values.length : 0
|
||||
readonly property bool hasData: valuesCount >= 2
|
||||
|
||||
Reference in New Issue
Block a user