Move some code around

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-02-07 18:47:03 +00:00
parent d765234d65
commit 1dcd6a9b95
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
19 changed files with 10 additions and 2 deletions

View File

@ -256,7 +256,7 @@ build/Carla.app/Contents/MacOS/lib/library.zip: $(CARLA_APP_ZIPS) data/macos/bun
build/Carla/Carla.exe: build/Carla/lib/library.zip
build/Carla/lib/library.zip: data/windows/app-gui.py # source/frontend/*
build/Carla/lib/library.zip: data/windows/app-gui.py source/frontend/*
$(call GENERATE_LIBRARY_ZIP,Carla)
# $(CARLA_APP_ZIPS)
@ -325,6 +325,14 @@ build/Carla/iconengines/% build/Carla-Control/iconengines/%: $(QT5_PREFIX)/lib/q
-@mkdir -p $(shell dirname $@)
@cp -v $< $@
build/Carla/imageformats/% build/Carla-Control/imageformats/%: $(QT5_PREFIX)/lib/qt5/plugins/imageformats/%
-@mkdir -p $(shell dirname $@)
@cp -v $< $@
build/Carla/platforms/% build/Carla-Control/platforms/%: $(QT5_PREFIX)/lib/qt5/plugins/platforms/%
-@mkdir -p $(shell dirname $@)
@cp -v $< $@
build/Carla/% build/Carla-Control/%: bin/%
-@mkdir -p $(shell dirname $@)
@cp -v $< $@

View File

@ -1135,11 +1135,11 @@ class PluginRefreshW(QDialog):
self.ui.ico_native.setPixmap(self.fIconNo)
self.ui.ch_native.setEnabled(False)
self.ui.ch_sf2.setEnabled(False)
self.ui.ch_sfz.setEnabled(False)
if not hasNonNative:
self.ui.ch_ladspa.setEnabled(False)
self.ui.ch_dssi.setEnabled(False)
self.ui.ch_vst.setEnabled(False)
self.ui.ch_vst3.setEnabled(False)
self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)