diff --git a/CMakeLists.txt b/CMakeLists.txt index 323d44afb..6bcc7f960 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,6 @@ if(QUICK_BUILD) set(ENABLE_SFIZZ OFF) set(ENABLE_GEM OFF) set(ENABLE_FFMPEG OFF) - set(ENABLE_OPUS OFF) endif() if(("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") diff --git a/Libraries/pd-else b/Libraries/pd-else index 1469f290e..dd647a1f2 160000 --- a/Libraries/pd-else +++ b/Libraries/pd-else @@ -1 +1 @@ -Subproject commit 1469f290e12d806d624a7ea2655ec7b8a7c09a25 +Subproject commit dd647a1f2f38efd6bb43e9df943f3a9dc57a80d0 diff --git a/Source/Components/DraggableNumber.h b/Source/Components/DraggableNumber.h index 326bf14e1..09fb755d3 100644 --- a/Source/Components/DraggableNumber.h +++ b/Source/Components/DraggableNumber.h @@ -549,7 +549,7 @@ class DraggableNumber : public Label String formatNumber(double value, int precision = -1) { - auto text = String(value, precision == -1 ? 8 : precision); + auto text = String(value, precision == -1 ? 6 : precision); if (dragMode != Integer) { if (!text.containsChar('.'))