diff --git a/OB-Xd.jucer b/OB-Xd.jucer index b998d83..850cf80 100644 --- a/OB-Xd.jucer +++ b/OB-Xd.jucer @@ -8,8 +8,8 @@ pluginProducesMidiOut="0" pluginSilenceInIsSilenceOut="0" pluginEditorRequiresKeys="0" pluginAUExportPrefix="" pluginRTASCategory="2048" aaxIdentifier="" pluginAAXCategory="" jucerVersion="5.4.7" companyName="discoDSP" - companyWebsite="https://www.discodsp.com/" companyEmail="" pluginIsMidiEffectPlugin="0" - pluginCharacteristicsValue="pluginIsSynth,pluginWantsMidiIn" + companyWebsite="https://www.discodsp.com/" companyEmail="contactus@discodsp.com" + pluginIsMidiEffectPlugin="0" pluginCharacteristicsValue="pluginIsSynth,pluginWantsMidiIn" pluginFormats="buildAU,buildStandalone,buildVST3" buildVST="0" buildVST3="1" buildAU="1" buildAUv3="0" buildRTAS="0" buildAAX="0" buildStandalone="1" enableIAA="0"> @@ -85,7 +85,6 @@ - @@ -109,7 +108,6 @@ - - - - diff --git a/Source/Gui/ButtonList.h b/Source/Gui/ButtonList.h index 97af316..c65ec53 100755 --- a/Source/Gui/ButtonList.h +++ b/Source/Gui/ButtonList.h @@ -94,7 +94,6 @@ public: void paintOverChildren (Graphics& g) override { int ofs = getSelectedId() - 1; - g.setImageResamplingQuality(Graphics::ResamplingQuality::highResamplingQuality); g.drawImage(kni, 0, 0, getWidth(), getHeight(), 0, h2 * ofs, w2, h2); } diff --git a/Source/Gui/Knob.h b/Source/Gui/Knob.h index 1097b99..6d4663f 100755 --- a/Source/Gui/Knob.h +++ b/Source/Gui/Knob.h @@ -87,7 +87,6 @@ public: void paint (Graphics& g) override { int ofs = (int) ((getValue() - getMinimum()) / (getMaximum() - getMinimum()) * (numFr - 1)); - g.setImageResamplingQuality(Graphics::ResamplingQuality::highResamplingQuality); g.drawImage (kni, 0, 0, getWidth(), getHeight(), 0, h2 * ofs, w2, h2); } diff --git a/Source/Gui/TooglableButton.h b/Source/Gui/TooglableButton.h index 7d57ffa..af3f055 100755 --- a/Source/Gui/TooglableButton.h +++ b/Source/Gui/TooglableButton.h @@ -99,7 +99,7 @@ public: { offset = 1; } - g.setImageResamplingQuality(Graphics::ResamplingQuality::highResamplingQuality); + g.drawImage(kni, 0, 0, getWidth(), getHeight(), 0, offset * h2, w2, h2); } diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index 47315ac..2b6793f 100755 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -46,7 +46,7 @@ void ObxdAudioProcessorEditor::loadSkin (ObxdAudioProcessor& ownerFilter) } XmlDocument skin (coords); - XmlElement* doc = skin.getDocumentElement(); + auto doc = skin.getDocumentElement(); if (doc) { if (doc->getTagName() == "PROPERTIES"){ @@ -468,13 +468,3 @@ void ObxdAudioProcessorEditor::paint(Graphics& g) } } - -void ObxdAudioProcessorEditor::resized() -{ -/* Not working - - const Image image = gin::applyResize (ImageCache::getFromFile(mainFile), 0.5); - - */ - -} diff --git a/Source/PluginEditor.h b/Source/PluginEditor.h index 2d14b8e..7b3b9bb 100755 --- a/Source/PluginEditor.h +++ b/Source/PluginEditor.h @@ -36,7 +36,6 @@ public: void mouseUp (const MouseEvent& e) override; void paint (Graphics& g) override; - void resized() override; //============================================================================== void changeListenerCallback (ChangeBroadcaster* source) override;