DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 9228f1763226cabf1179775d55e5e343b1ef3636
parent 22165c182d63db9271e5baa09645d85b0f3378e7
Author: falkTX <falktx@gmail.com>
Date:   Tue, 24 Dec 2013 04:34:41 +0000

ImageAboutWindow must not be resizable

Diffstat:
Mdgl/src/ImageAboutWindow.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/dgl/src/ImageAboutWindow.cpp b/dgl/src/ImageAboutWindow.cpp @@ -32,6 +32,7 @@ ImageAboutWindow::ImageAboutWindow(App& app, Window& parent, const Image& image) Widget((Window&)*this), fImgBackground(image) { + Window::setResizable(false); Window::setSize(image.getWidth(), image.getHeight() PAD_SIZE); Window::setTitle("About"); } @@ -41,6 +42,7 @@ ImageAboutWindow::ImageAboutWindow(Widget* widget, const Image& image) Widget((Window&)*this), fImgBackground(image) { + Window::setResizable(false); Window::setSize(image.getWidth(), image.getHeight() PAD_SIZE); Window::setTitle("About"); }