Browse Source

Don't try to map UI if it's just a file-browser (audio/midi file)

tags/1.9.4
falkTX 11 years ago
parent
commit
6bfcfa18e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/NativePlugin.cpp

+ 1
- 1
source/backend/plugin/NativePlugin.cpp View File

@@ -715,7 +715,7 @@ public:
}

#ifndef BUILD_BRIDGE
if ((fDescriptor->hints & ::PLUGIN_USES_PARENT_ID) == 0)
if ((fDescriptor->hints & ::PLUGIN_USES_PARENT_ID) == 0 && std::strstr(fDescriptor->label, "file") == nullptr)
pData->tryTransient();
#endif



Loading…
Cancel
Save