diff options
Diffstat (limited to 'src/libs/client/PortModel.cpp')
-rw-r--r-- | src/libs/client/PortModel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/client/PortModel.cpp b/src/libs/client/PortModel.cpp index 6b727747..ecf1070b 100644 --- a/src/libs/client/PortModel.cpp +++ b/src/libs/client/PortModel.cpp @@ -26,7 +26,7 @@ bool PortModel::is_logarithmic() const { const Atom& hint = get_variable("ingen:logarithmic"); - return (hint && hint > 0); + return (hint.is_valid() && hint.get_bool() > 0); } @@ -34,7 +34,7 @@ bool PortModel::is_integer() const { const Atom& hint = get_variable("ingen:integer"); - return (hint && hint > 0); + return (hint.is_valid() && hint.get_bool() > 0); } @@ -42,7 +42,7 @@ bool PortModel::is_toggle() const { const Atom& hint = get_variable("ingen:toggled"); - return (hint && hint > 0); + return (hint.is_valid() && hint.get_bool() > 0); } } // namespace Client |