Browse Source

Set supportsViewDpiScaling as supported canDo

pull/312/head
falkTX 4 years ago
parent
commit
354bea632d
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      distrho/src/DistrhoPluginVST2.cpp

+ 4
- 0
distrho/src/DistrhoPluginVST2.cpp View File

@@ -1003,6 +1003,10 @@ public:
fUsingNsView = true;
return 0xbeef0000;
}
#endif
#ifndef DISTRHO_OS_MAC
if (std::strcmp(canDo, "supportsViewDpiScaling") == 0)
return 1;
#endif
if (std::strcmp(canDo, "receiveVstEvents") == 0 ||
std::strcmp(canDo, "receiveVstMidiEvent") == 0)


Loading…
Cancel
Save