diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-10-16 01:13:58 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-16 11:11:51 +0200 |
commit | 29851d956f166f8f57a8878047df94b0b058c7eb (patch) | |
tree | 1f5873cc6a436bad5e8a0825372c9ee8b082f7c9 /qt-ui | |
parent | fce83b953d4527c847cbdd53dc078d875a7b54c4 (diff) | |
download | subsurface-29851d956f166f8f57a8878047df94b0b058c7eb.tar.gz |
Fix the type of the for the Suunto max depth
The type is now a double. It was a int during development, but due to
the feet/128 precision i changed it to a Double, but the default value
wasn't changed type on.
All the Qt tools swallowed the number there without complaining but the
Qt designer insisted on changing it to a double.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/configuredivecomputerdialog.ui | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/configuredivecomputerdialog.ui b/qt-ui/configuredivecomputerdialog.ui index 51ad63302..55c9efea2 100644 --- a/qt-ui/configuredivecomputerdialog.ui +++ b/qt-ui/configuredivecomputerdialog.ui @@ -916,7 +916,7 @@ <bool>true</bool> </property> <property name="maximum"> - <number>200</number> + <double>200.000000000000000</double> </property> </widget> </item> |