Set a minimum size on the visualisation window. Fixes issue 1643

This commit is contained in:
David Sansome 2011-03-29 19:12:58 +00:00
parent e69502dfd3
commit e8101273f0
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,8 @@ VisualisationContainer::VisualisationContainer(QWidget *parent)
QShortcut* close = new QShortcut(QKeySequence::Close, this);
connect(close, SIGNAL(activated()), SLOT(close()));
setMinimumSize(64, 64);
}
void VisualisationContainer::Init() {