diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-10-09 08:46:18 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-10-09 11:49:29 +0300 |
commit | 78cda85444a9b9ec384e19ec17686f2ce7c307ec (patch) | |
tree | 1e0e74006b7a9afdf7bd9046d1df459122c202ca /core/prefs-macros.h | |
parent | 2cb5d45231b65a713cad0808badde250594b49de (diff) | |
download | subsurface-78cda85444a9b9ec384e19ec17686f2ce7c307ec.tar.gz |
Display units in dive list table based on prefs option
Add a preferences option which enables or disables display of units in the
main dive liste table.
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'core/prefs-macros.h')
-rw-r--r-- | core/prefs-macros.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/prefs-macros.h b/core/prefs-macros.h index 9208fb82e..7648580ef 100644 --- a/core/prefs-macros.h +++ b/core/prefs-macros.h @@ -18,6 +18,13 @@ else \ prefs.units.field = default_prefs.units.field +#define GET_UNIT_INT(name, field) \ + v = s.value(QString(name)); \ + if (v.isValid()) \ + prefs.units.field = v.toInt(); \ + else \ + prefs.units.field = default_prefs.units.field + #define GET_BOOL(name, field) \ v = s.value(QString(name)); \ if (v.isValid()) \ |