mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
diveplanner: adjust sac-factor calculation.
The real values are 1.0 to 10.0, but QML needs int so mobile gets values 10.0 to 100.0 add sacfactor() to QMLInterface and update QML. Signed-off-by: jan Iversen <jan@casacondor.com>
This commit is contained in:
parent
cd3c2266f9
commit
86fd49f2d7
4 changed files with 27 additions and 16 deletions
|
@ -261,15 +261,15 @@ Kirigami.ScrollablePage {
|
|||
text: qsTr("SAC factor")
|
||||
}
|
||||
TemplateSpinBox {
|
||||
from: 20
|
||||
from: 10
|
||||
to: 99
|
||||
stepSize: 1
|
||||
value: Planner.sacfactor
|
||||
value: Backend.sacfactor
|
||||
textFromValue: function (value, locale) {
|
||||
return (value / 10).toFixed(1)
|
||||
}
|
||||
onValueModified: {
|
||||
Planner.sacfactor = value
|
||||
Backend.sacfactor = value
|
||||
}
|
||||
}
|
||||
TemplateLabel {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue