1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-20 07:52:30 +02:00

* Call setVisible on the lineEdit... just to be sure.

This commit is contained in:
Christian Muehlhaeuser 2011-08-04 05:24:46 +02:00
parent 9a1ac2f505
commit f010736e0d

View File

@ -246,6 +246,7 @@ TomahawkWindow::setupToolBar()
MacLineEdit* lineEdit = new MacLineEdit( m_searchBox );
lineEdit->setFixedSize( 256, 28 );
lineEdit->set_hint( tr( "Search" ) );
lineEdit->setVisible( true );
m_searchBox->layout()->addWidget( lineEdit );
connect( lineEdit, SIGNAL( textChanged( QString ) ), SLOT( onSearch( QString ) ) );