From ac40a63024a34d8cdf0ae3849d76770b08e7c268 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 14 Aug 2021 01:31:00 +0100 Subject: [PATCH] Do not set JUCE editor scale factor under macOS --- source/backend/plugin/CarlaPluginJuce.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/backend/plugin/CarlaPluginJuce.cpp b/source/backend/plugin/CarlaPluginJuce.cpp index a21f02927..7a3c2deb1 100644 --- a/source/backend/plugin/CarlaPluginJuce.cpp +++ b/source/backend/plugin/CarlaPluginJuce.cpp @@ -477,8 +477,9 @@ public: if (juce::AudioProcessorEditor* const editor = fInstance->createEditorIfNeeded()) { const EngineOptions& opts(pData->engine->getOptions()); - +#ifndef CARLA_OS_MAC editor->setScaleFactor(opts.uiScale); +#endif if (fWindow == nullptr) {