diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-19 11:20:12 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-19 11:20:12 +0200 |
commit | c4f69d2af7d995eb0dd4592c18dc2f6b930bd193 (patch) | |
tree | 05118efa264bb2623719cfa1d579ca1ed1cf1980 /plugingui/plugingui.cc | |
parent | ae63d465c7252602500c4de5aa2d2a99df852bfb (diff) |
Make window fixed size.
Diffstat (limited to 'plugingui/plugingui.cc')
-rw-r--r-- | plugingui/plugingui.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/plugingui.cc b/plugingui/plugingui.cc index e452965..6601be7 100644 --- a/plugingui/plugingui.cc +++ b/plugingui/plugingui.cc @@ -284,7 +284,7 @@ void PluginGUI::init() window->eventHandler()->registerCloseHandler(closeEventHandler, (void*)&closing); - window->resize(370, 330); + window->setFixedSize(370, 330); window->setCaption("DrumGizmo v"VERSION); GUI::Label *lbl_title = new GUI::Label(window); |