diff --git a/dpf b/dpf index 2e508c7..267fc77 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 2e508c73e95ef50947e3ed6e941b67b1f6b5bed4 +Subproject commit 267fc770150549867ae4456896c5e252f34387b3 diff --git a/plugins/3BandEQ/DistrhoUI3BandEQ.cpp b/plugins/3BandEQ/DistrhoUI3BandEQ.cpp index 2597f62..75956c7 100644 --- a/plugins/3BandEQ/DistrhoUI3BandEQ.cpp +++ b/plugins/3BandEQ/DistrhoUI3BandEQ.cpp @@ -24,7 +24,7 @@ namespace Art = DistrhoArtwork3BandEQ; // ----------------------------------------------------------------------- DistrhoUI3BandEQ::DistrhoUI3BandEQ() - : UI(Art::backgroundWidth, Art::backgroundHeight), + : UI(Art::backgroundWidth, Art::backgroundHeight, true), fImgBackground(Art::backgroundData, Art::backgroundWidth, Art::backgroundHeight, kImageFormatBGR), fAboutWindow(this) { @@ -109,9 +109,6 @@ DistrhoUI3BandEQ::DistrhoUI3BandEQ() // set default values programLoaded(0); - - // automatically-scale - setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true); } // ----------------------------------------------------------------------- diff --git a/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp b/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp index c8dd074..30dae47 100644 --- a/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp +++ b/plugins/3BandSplitter/DistrhoUI3BandSplitter.cpp @@ -24,7 +24,7 @@ namespace Art = DistrhoArtwork3BandSplitter; // ----------------------------------------------------------------------- DistrhoUI3BandSplitter::DistrhoUI3BandSplitter() - : UI(Art::backgroundWidth, Art::backgroundHeight), + : UI(Art::backgroundWidth, Art::backgroundHeight, true), fImgBackground(Art::backgroundData, Art::backgroundWidth, Art::backgroundHeight, kImageFormatBGR), fAboutWindow(this) { @@ -109,9 +109,6 @@ DistrhoUI3BandSplitter::DistrhoUI3BandSplitter() // set default values programLoaded(0); - - // automatically-scale - setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true); } // ----------------------------------------------------------------------- diff --git a/plugins/PingPongPan/DistrhoUIPingPongPan.cpp b/plugins/PingPongPan/DistrhoUIPingPongPan.cpp index 326fb9b..265cefe 100644 --- a/plugins/PingPongPan/DistrhoUIPingPongPan.cpp +++ b/plugins/PingPongPan/DistrhoUIPingPongPan.cpp @@ -24,7 +24,7 @@ namespace Art = DistrhoArtworkPingPongPan; // ----------------------------------------------------------------------- DistrhoUIPingPongPan::DistrhoUIPingPongPan() - : UI(Art::backgroundWidth, Art::backgroundHeight), + : UI(Art::backgroundWidth, Art::backgroundHeight, true), fImgBackground(Art::backgroundData, Art::backgroundWidth, Art::backgroundHeight, kImageFormatBGR), fAboutWindow(this) { @@ -62,9 +62,6 @@ DistrhoUIPingPongPan::DistrhoUIPingPongPan() // set default values programLoaded(0); - - // automatically-scale - setGeometryConstraints(Art::backgroundWidth, Art::backgroundHeight, true, true); } // -----------------------------------------------------------------------