1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 16:42:26 +02:00

osx doesn't like hidden widgets added to layouts and shown later

This commit is contained in:
Leo Franchi 2011-06-04 19:55:56 -04:00
parent d8d88826f5
commit e5bdab9f9b

View File

@ -29,6 +29,9 @@ public:
DelegateConfigWrapper( QWidget* conf, const QString& title, QWidget* parent, Qt::WindowFlags flags = 0 ) : QDialog( parent, flags ), m_widget( conf )
{
m_widget->setWindowFlags( Qt::Sheet );
#ifdef Q_OS_MAC
m_widget->setVisible( true );
#endif
setWindowTitle( title );
QVBoxLayout* v = new QVBoxLayout( this );