diff options
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 9b92f8197..496c32cdb 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -538,7 +538,7 @@ volume_t string_to_volume(const char *str, pressure_t workp) QString local_cuft = CylindersModel::tr("cuft"); volume_t volume; - if (rest.startsWith("l") || rest.startsWith(local_l)) + if (rest.startsWith("l") || rest.startsWith("ℓ") || rest.startsWith(local_l)) goto l; if (rest.startsWith("cuft") || rest.startsWith(local_cuft)) goto cuft; |