1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-14 13:01:53 +02:00

Revert "Moved the settings categories to the left."

This reverts commit 2236b0ffb38e9538f08cb4b3e268e29bbac4b449.
This commit is contained in:
Christian Muehlhaeuser 2012-08-02 21:49:08 +02:00
parent 9d03d77068
commit 6fadeab1dd

View File

@ -292,6 +292,10 @@ SettingsDialog::createIcons()
m_settingsGroup = new QActionGroup( m_toolBar );
QWidget *leftSpacer = new QWidget( m_toolBar );
leftSpacer->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
m_toolBar->addWidget( leftSpacer );
QAction *accountsAction = new QAction( QIcon( RESPATH "images/account-settings.png" ),
tr( "Services" ),
m_toolBar );
@ -325,6 +329,10 @@ SettingsDialog::createIcons()
m_toolBar->addActions( m_settingsGroup->actions() );
QWidget *rightSpacer = new QWidget( m_toolBar );
rightSpacer->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
m_toolBar->addWidget( rightSpacer );
connect( m_settingsGroup, SIGNAL( triggered( QAction * ) ),
this, SLOT( changePage( QAction * ) ) );