Mercurial > hg > svapp
diff framework/MainWindowBase.cpp @ 379:6a84102c006a
Create separate play scroll modes for (Tony-style, DAW-style) page mode and (SV-style) paging with playhead alignment to centre on drag
author | Chris Cannam |
---|---|
date | Wed, 02 Jul 2014 17:30:09 +0100 |
parents | a7a643988390 |
children | ad33fdc4ad92 |
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp Wed Jul 02 15:09:51 2014 +0100 +++ b/framework/MainWindowBase.cpp Wed Jul 02 17:30:09 2014 +0100 @@ -2458,6 +2458,12 @@ m_statusLabel = new QLabel(); statusBar()->addWidget(m_statusLabel, 1); } + + QList<QFrame *> frames = statusBar()->findChildren<QFrame *>(); + foreach (QFrame *f, frames) { + f->setFrameStyle(QFrame::NoFrame); + } + return m_statusLabel; }