This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Try to prevent flooding logs with nan warning
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc2
falkTX
5 years ago
parent
7ced536c88
commit
a511bb259e
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
source/frontend/widgets/paramspinbox.py
+ 1
- 1
source/frontend/widgets/paramspinbox.py
View File
@@ -134,7 +134,7 @@ class ParamProgressBar(QProgressBar):
self.fMaximum = value
def setValue(self, value):
if self.fRealValue == value and self.fInitiated:
if
(
self.fRealValue == value
or isnan(value))
and self.fInitiated:
return False
self.fInitiated = True
Write
Preview
Loading…
Cancel
Save