1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 19:31:02 +01:00

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

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() {